1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_BACKGROUND_BACKGROUND_CONTENTS_SERVICE_H_
#define CHROME_BROWSER_BACKGROUND_BACKGROUND_CONTENTS_SERVICE_H_
#include <stdint.h>
#include <map>
#include <string>
#include <vector>
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/scoped_observation.h"
#include "base/values.h"
#include "chrome/browser/background/background_contents.h"
#include "components/keyed_service/core/keyed_service.h"
#include "extensions/browser/extension_host_registry.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_registry_observer.h"
#include "net/base/backoff_entry.h"
#include "ui/base/window_open_disposition.h"
#include "url/gurl.h"
class PrefService;
class Profile;
namespace content {
class SessionStorageNamespace;
}
namespace extensions {
class Extension;
} // namespace extensions
namespace gfx {
class Image;
class Rect;
}
namespace message_center {
class NotificationDelegate;
}
class BackgroundContentsServiceObserver;
// BackgroundContentsService is owned by the profile, and is responsible for
// managing the lifetime of BackgroundContents (tracking the set of background
// urls, loading them at startup, and keeping the browser process alive as long
// as there are BackgroundContents loaded).
//
// It is also responsible for tracking the association between
// BackgroundContents and their parent app, and shutting them down when the
// parent app is unloaded.
class BackgroundContentsService
: public extensions::ExtensionRegistryObserver,
public extensions::ExtensionHostRegistry::Observer,
public BackgroundContents::Delegate,
public KeyedService {
public:
explicit BackgroundContentsService(Profile* profile);
BackgroundContentsService(const BackgroundContentsService&) = delete;
BackgroundContentsService& operator=(const BackgroundContentsService&) =
delete;
~BackgroundContentsService() override;
// Allows tests to reduce the time between a force-installed app/extension
// crashing and when we reload it.
static void SetRestartDelayForForceInstalledAppsAndExtensionsForTesting(
int restart_delay_in_ms);
// Get the crash notification's delegate id for the extension.
static std::string GetNotificationDelegateIdForExtensionForTesting(
const std::string& extension_id);
// Disable closing the crash notification balloon for tests.
static void DisableCloseBalloonForTesting(
bool disable_close_balloon_for_testing);
void AddObserver(BackgroundContentsServiceObserver* observer);
void RemoveObserver(BackgroundContentsServiceObserver* observer);
// Returns the BackgroundContents associated with the passed application id,
// or NULL if none.
BackgroundContents* GetAppBackgroundContents(const std::string& appid);
// Returns true if there's a registered BackgroundContents for this app. It
// is possible for this routine to return true when GetAppBackgroundContents()
// returns false, if the BackgroundContents closed due to the render process
// crashing.
bool HasRegisteredBackgroundContents(const std::string& appid);
// Returns all currently opened BackgroundContents (used by the task manager).
std::vector<BackgroundContents*> GetBackgroundContents() const;
// BackgroundContents::Delegate implementation.
void AddWebContents(std::unique_ptr<content::WebContents> new_contents,
const GURL& target_url,
WindowOpenDisposition disposition,
const blink::mojom::WindowFeatures& window_features,
bool* was_blocked) override;
void OnBackgroundContentsNavigated(BackgroundContents* contents) override;
void OnBackgroundContentsTerminated(BackgroundContents* contents) override;
void OnBackgroundContentsClosed(BackgroundContents* contents) override;
// KeyedService implementation.
void Shutdown() override;
// Gets the parent application id for the passed BackgroundContents. Returns
// an empty string if no parent application found (e.g. passed
// BackgroundContents has already shut down).
const std::string& GetParentApplicationId(BackgroundContents* contents) const;
// Creates a new BackgroundContents using the passed |site| and
// begins tracking the object internally so it can be shutdown if the parent
// application is uninstalled.
// Observers will receive a OnBackgroundContentsOpened call.
BackgroundContents* CreateBackgroundContents(
scoped_refptr<content::SiteInstance> site,
content::RenderFrameHost* opener,
bool is_new_browsing_instance,
const std::string& frame_name,
const std::string& application_id,
const content::StoragePartitionConfig& partition_config,
content::SessionStorageNamespace* session_storage_namespace);
// Removes |contents| from |contents_map_|, deleting it.
void DeleteBackgroundContents(BackgroundContents* contents);
// Load the manifest-specified background page for the specified hosted app.
// If the manifest doesn't specify one, then load the BackgroundContents
// registered in the pref. This is typically used to reload a crashed
// background page.
void LoadBackgroundContentsForExtension(const std::string& extension_id);
// Show a popup notification balloon with a crash message for a given app/
// extension.
void ShowBalloonForTesting(const extensions::Extension* extension);
private:
friend class BackgroundContentsServiceTest;
friend class MockBackgroundContents;
FRIEND_TEST_ALL_PREFIXES(BackgroundContentsServiceTest,
BackgroundContentsCreateDestroy);
FRIEND_TEST_ALL_PREFIXES(BackgroundContentsServiceTest,
TestApplicationIDLinkage);
// Registers for various notifications.
void StartObserving();
// extensions::ExtensionHostRegistry::Observer:
void OnExtensionHostRenderProcessGone(
content::BrowserContext* browser_context,
extensions::ExtensionHost* extension_host) override;
// Called when ExtensionSystem is ready.
void OnExtensionSystemReady();
// extensions::ExtensionRegistryObserver implementation.
void OnExtensionLoaded(content::BrowserContext* browser_context,
const extensions::Extension* extension) override;
void OnExtensionUnloaded(content::BrowserContext* browser_context,
const extensions::Extension* extension,
extensions::UnloadedExtensionReason reason) override;
void OnExtensionUninstalled(content::BrowserContext* browser_context,
const extensions::Extension* extension,
extensions::UninstallReason reason) override;
// Restarts a force-installed app/extension after a crash.
void RestartForceInstalledExtensionOnCrash(
const extensions::Extension* extension);
// Loads all registered BackgroundContents at startup.
void LoadBackgroundContentsFromPrefs();
// Load a BackgroundContent; the settings are read from the provided
// dictionary.
void LoadBackgroundContentsFromDictionary(const std::string& extension_id,
const base::Value::Dict& contents);
// Load the manifest-specified BackgroundContents for all apps for the
// profile.
void LoadBackgroundContentsFromManifests();
// Creates a single BackgroundContents associated with the specified |appid|,
// creates an associated RenderView with the name specified by |frame_name|,
// and navigates to the passed |url|.
void LoadBackgroundContents(const GURL& url,
const std::string& frame_name,
const std::string& appid);
// Invoked when a new BackgroundContents is opened.
void AddBackgroundContents(std::unique_ptr<BackgroundContents> contents,
const std::string& application_id,
const std::string& frame_name);
// Registers the |contents->GetURL()| to be run at startup. Only happens for
// the first navigation after window.open() (future calls to
// RegisterBackgroundContents() for the same BackgroundContents will do
// nothing).
void RegisterBackgroundContents(BackgroundContents* contents);
// Stops loading the passed BackgroundContents on startup.
void UnregisterBackgroundContents(BackgroundContents* contents);
// Unregisters and deletes the BackgroundContents associated with the
// passed extension.
void ShutdownAssociatedBackgroundContents(const std::string& appid);
// Returns true if this BackgroundContents is in the contents_list_.
bool IsTracked(BackgroundContents* contents) const;
// Sends out a notification when our association of background contents with
// apps may have changed (used by BackgroundApplicationListModel to update the
// set of background apps as new background contents are opened/closed).
void SendChangeNotification();
// Checks whether there has been additional |extension_id| failures. If not,
// delete the BackoffEntry corresponding to |extension_id|, if exists.
void MaybeClearBackoffEntry(const std::string extension_id,
int expected_failure_count);
void HandleExtensionCrashed(const extensions::Extension* extension);
// Display the notification with the given image.
void NotificationImageReady(
const std::string extension_name,
const std::string extension_id,
const std::u16string message,
scoped_refptr<message_center::NotificationDelegate> delegate,
const gfx::Image& icon);
// Show a popup notification balloon with a crash message for a given app/
// extension.
void ShowBalloon(const extensions::Extension* extension);
// Delay (in ms) before restarting a force-installed extension that crashed.
static int restart_delay_in_ms_;
raw_ptr<Profile, FlakyDanglingUntriaged> profile_;
base::ObserverList<BackgroundContentsServiceObserver> observers_;
// PrefService used to store list of background pages (or NULL if this is
// running under an incognito profile).
raw_ptr<PrefService, FlakyDanglingUntriaged> prefs_ = nullptr;
// Information we track about each BackgroundContents.
struct BackgroundContentsInfo {
BackgroundContentsInfo();
~BackgroundContentsInfo();
// The BackgroundContents whose information we are tracking.
std::unique_ptr<BackgroundContents> contents;
// The name of the top level frame for this BackgroundContents.
std::string frame_name;
};
// Map associating currently loaded BackgroundContents with their parent
// applications.
// Key: application id
// Value: BackgroundContentsInfo for the BC associated with that application
typedef std::map<std::string, BackgroundContentsInfo> BackgroundContentsMap;
BackgroundContentsMap contents_map_;
// Map associating component extensions that have attempted to reload with a
// BackoffEntry keeping track of retry timing.
typedef std::map<extensions::ExtensionId, std::unique_ptr<net::BackoffEntry>>
ComponentExtensionBackoffEntryMap;
ComponentExtensionBackoffEntryMap component_backoff_map_;
base::ScopedObservation<extensions::ExtensionRegistry,
extensions::ExtensionRegistryObserver>
extension_registry_observation_{this};
base::ScopedObservation<extensions::ExtensionHostRegistry,
extensions::ExtensionHostRegistry::Observer>
extension_host_registry_observation_{this};
base::WeakPtrFactory<BackgroundContentsService> weak_ptr_factory_{this};
};
#endif // CHROME_BROWSER_BACKGROUND_BACKGROUND_CONTENTS_SERVICE_H_
|