summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_function_dispatcher.h
diff options
context:
space:
mode:
authorbenwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-10 03:45:08 +0000
committerbenwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-10 03:45:08 +0000
commitd72d3a6b57d88fe88d3db71dd17239166a1c59ff (patch)
tree6839eb3eb47e530f28f617c48d7bec2b3f72de82 /chrome/browser/extensions/extension_function_dispatcher.h
parent325940225f8caffea733f85f209db0ef12d6c0fb (diff)
downloadchromium_src-d72d3a6b57d88fe88d3db71dd17239166a1c59ff.zip
chromium_src-d72d3a6b57d88fe88d3db71dd17239166a1c59ff.tar.gz
chromium_src-d72d3a6b57d88fe88d3db71dd17239166a1c59ff.tar.bz2
Pull shell window stuff out of ExtensionHost and put in ShellWindow
This will let us iterate quicker on ShellWindow and platform apps and let them do things (like have TabContentsWrappers) that normal ExtensionHost windows shouldn't do. BUG=None TEST=Platform apps still work, browser tests. Review URL: https://chromiumcodereview.appspot.com/10119003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136239 0039d316-1c4b-4281-b951-d872f2087c98
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() {}