Index: chrome/browser/extensions/api/tabs/tabs_api.cc |
diff --git a/chrome/browser/extensions/api/tabs/tabs_api.cc b/chrome/browser/extensions/api/tabs/tabs_api.cc |
index 229d89aaed2445c1b428504800768e261b4dedac..00be6c9431a756ff3fd1886b3b52f81fd28e6a4b 100644 |
--- a/chrome/browser/extensions/api/tabs/tabs_api.cc |
+++ b/chrome/browser/extensions/api/tabs/tabs_api.cc |
@@ -1799,6 +1799,13 @@ const GURL& ExecuteCodeInTabFunction::GetWebViewSrc() const { |
return GURL::EmptyGURL(); |
} |
+bool ExecuteCodeInTabFunction::LoadFileForWebUI( |
Fady Samuel
2015/03/14 04:26:56
Make this code the default implementation in Execu
Xi Han
2015/03/16 14:36:05
Done.
|
+ const std::string& file_src, |
+ const WebUILoadFileCallback& callback) { |
+ callback.Run(false, std::string()); |
+ return false; |
+} |
+ |
bool TabsExecuteScriptFunction::ShouldInsertCSS() const { |
return false; |
} |