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

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

Issue 10119003: Pull shell window stuff out of ExtensionHost and put in ShellWindow (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Try jobs Created 8 years, 8 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.cc
diff --git a/chrome/browser/extensions/extension_function_dispatcher.cc b/chrome/browser/extensions/extension_function_dispatcher.cc
index 78aa9d767869f923c748778b5a4c59cde034b8c2..d9a38c06e648fb37d0f7fce4135e3e4374e1bb97 100644
--- a/chrome/browser/extensions/extension_function_dispatcher.cc
+++ b/chrome/browser/extensions/extension_function_dispatcher.cc
@@ -96,6 +96,14 @@ base::LazyInstance<Static> g_global_io_data = LAZY_INSTANCE_INITIALIZER;
} // namespace
+Browser* ExtensionFunctionDispatcher::Delegate::GetBrowser() {
+ return NULL;
+}
+
+content::WebContents*
+ ExtensionFunctionDispatcher::Delegate::GetAssociatedWebContents() const {
+ return NULL;
+}
void ExtensionFunctionDispatcher::GetAllFunctionNames(
std::vector<std::string>* names) {

Powered by Google App Engine
This is Rietveld 408576698