Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(621)

Unified Diff: chrome/browser/extensions/extension_function_dispatcher.h

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_function_dispatcher.h
diff --git a/chrome/browser/extensions/extension_function_dispatcher.h b/chrome/browser/extensions/extension_function_dispatcher.h
index 5278171b5a6e6cd5d61cc9b8b6d737bbfea60a37..ed6548a0f9ea2fcfae4d76ba93d90beedc8b9e6f 100644
--- a/chrome/browser/extensions/extension_function_dispatcher.h
+++ b/chrome/browser/extensions/extension_function_dispatcher.h
@@ -15,7 +15,6 @@
#include "googleurl/src/gurl.h"
class ChromeRenderMessageFilter;
-class Extension;
class ExtensionFunction;
class ExtensionWindowController;
class ExtensionInfoMap;
@@ -28,6 +27,7 @@ class WebContents;
}
namespace extensions {
+class Extension;
class ExtensionAPI;
class ProcessMap;
}
@@ -104,7 +104,7 @@ class ExtensionFunctionDispatcher
// Called when an ExtensionFunction is done executing, after it has sent
// a response (if any) to the extension.
- void OnExtensionFunctionCompleted(const Extension* extension);
+ void OnExtensionFunctionCompleted(const extensions::Extension* extension);
// The profile that this dispatcher is associated with.
Profile* profile() { return profile_; }
@@ -115,7 +115,7 @@ class ExtensionFunctionDispatcher
// Does not set subclass properties, or include_incognito.
static ExtensionFunction* CreateExtensionFunction(
const ExtensionHostMsg_Request_Params& params,
- const Extension* extension,
+ const extensions::Extension* extension,
int requesting_process_id,
const extensions::ProcessMap& process_map,
extensions::ExtensionAPI* api,
« no previous file with comments | « chrome/browser/extensions/extension_function.h ('k') | chrome/browser/extensions/extension_function_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698