summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_function_dispatcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/extension_function_dispatcher.h')
-rw-r--r--chrome/browser/extensions/extension_function_dispatcher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_function_dispatcher.h b/chrome/browser/extensions/extension_function_dispatcher.h
index 4a731d9..5278171 100644
--- a/chrome/browser/extensions/extension_function_dispatcher.h
+++ b/chrome/browser/extensions/extension_function_dispatcher.h
@@ -55,13 +55,13 @@ class ExtensionFunctionDispatcher
public:
// Returns the ExtensionWindowController associated with this delegate,
// or NULL if no window is associated with the delegate.
- virtual ExtensionWindowController* GetExtensionWindowController() const = 0;
+ virtual ExtensionWindowController* GetExtensionWindowController() const;
// Asks the delegate for any relevant WebContents associated with this
// context. For example, the WebbContents in which an infobar or
// chrome-extension://<id> URL are being shown. Callers must check for a
// NULL return value (as in the case of a background page).
- virtual content::WebContents* GetAssociatedWebContents() const = 0;
+ virtual content::WebContents* GetAssociatedWebContents() const;
protected:
virtual ~Delegate() {}