Move ExtensionHost into extensions namespace
BUG=139042,117261
Review URL: https://chromiumcodereview.appspot.com/10824030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149295 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/extensions/lazy_background_task_queue.cc b/chrome/browser/extensions/lazy_background_task_queue.cc
index 89bf38e..b449f88 100644
--- a/chrome/browser/extensions/lazy_background_task_queue.cc
+++ b/chrome/browser/extensions/lazy_background_task_queue.cc
@@ -143,7 +143,8 @@
case chrome::NOTIFICATION_EXTENSION_HOST_DID_STOP_LOADING: {
// If an on-demand background page finished loading, dispatch queued up
// events for it.
- ExtensionHost* host = content::Details<ExtensionHost>(details).ptr();
+ ExtensionHost* host =
+ content::Details<ExtensionHost>(details).ptr();
if (host->extension_host_type() ==
chrome::VIEW_TYPE_EXTENSION_BACKGROUND_PAGE) {
CHECK(host->did_stop_loading());
@@ -153,7 +154,8 @@
}
case chrome::NOTIFICATION_EXTENSION_HOST_DESTROYED: {
Profile* profile = content::Source<Profile>(source).ptr();
- ExtensionHost* host = content::Details<ExtensionHost>(details).ptr();
+ ExtensionHost* host =
+ content::Details<ExtensionHost>(details).ptr();
if (host->extension_host_type() ==
chrome::VIEW_TYPE_EXTENSION_BACKGROUND_PAGE) {
PendingTasksKey key(profile, host->extension()->id());