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

Unified Diff: chrome/renderer/extensions/chrome_v8_extension.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/renderer/extensions/chrome_v8_extension.h
diff --git a/chrome/renderer/extensions/chrome_v8_extension.h b/chrome/renderer/extensions/chrome_v8_extension.h
index 84fda03ddcbd84a78d5d2fd913834e83a226aa33..4be658727b632d0ad9d15f2fa11f462c88eca406 100644
--- a/chrome/renderer/extensions/chrome_v8_extension.h
+++ b/chrome/renderer/extensions/chrome_v8_extension.h
@@ -18,13 +18,16 @@
#include <string>
class ChromeV8Context;
-class Extension;
class ExtensionDispatcher;
namespace content {
class RenderView;
}
+namespace extensions {
+class Extension;
+}
+
// This is a base class for chrome extension bindings. Common features that
// are shared by different modules go here.
// TODO(koz): Rename this to ExtensionNativeModule.
@@ -52,7 +55,7 @@ class ChromeV8Extension : public NativeHandler {
// Note: do not call this function before or during the chromeHidden.onLoad
// event dispatch. The URL might not have been committed yet and might not
// be an extension URL.
- const ::Extension* GetExtensionForCurrentRenderView() const;
+ const extensions::Extension* GetExtensionForCurrentRenderView() const;
// Returns the chromeHidden object for the current context.
static v8::Handle<v8::Value> GetChromeHidden(const v8::Arguments& args);
« no previous file with comments | « chrome/renderer/extensions/chrome_v8_context_set_unittest.cc ('k') | chrome/renderer/extensions/chrome_v8_extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698