| Index: chrome/renderer/extensions/webstore_bindings.h
|
| diff --git a/chrome/renderer/extensions/webstore_bindings.h b/chrome/renderer/extensions/webstore_bindings.h
|
| index e05544e7288213795840aba2cbff9d4516144ad9..6f6ca1b0c4c98756df033c4e74e80cb4f6feba04 100644
|
| --- a/chrome/renderer/extensions/webstore_bindings.h
|
| +++ b/chrome/renderer/extensions/webstore_bindings.h
|
| @@ -9,6 +9,7 @@
|
| #include "chrome/renderer/extensions/chrome_v8_extension.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
|
|
|
| +namespace extensions {
|
| class ChromeV8Context;
|
|
|
| // A V8 extension that creates an object at window.chrome.webstore. This object
|
| @@ -17,7 +18,7 @@ class ChromeV8Context;
|
| class WebstoreBindings : public ChromeV8Extension,
|
| public ChromeV8ExtensionHandler {
|
| public:
|
| - explicit WebstoreBindings(ExtensionDispatcher* dispatcher,
|
| + explicit WebstoreBindings(Dispatcher* dispatcher,
|
| ChromeV8Context* context);
|
|
|
| // IPC::Listener
|
| @@ -41,4 +42,6 @@ class WebstoreBindings : public ChromeV8Extension,
|
| DISALLOW_COPY_AND_ASSIGN(WebstoreBindings);
|
| };
|
|
|
| +} // namespace extensions
|
| +
|
| #endif // CHROME_RENDERER_EXTENSIONS_WEBSTORE_BINDINGS_H_
|
|
|