| 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(
|
| + const std::string& file_src,
|
| + const WebUILoadFileCallback& callback) {
|
| + callback.Run(false, std::string());
|
| + return false;
|
| +}
|
| +
|
| bool TabsExecuteScriptFunction::ShouldInsertCSS() const {
|
| return false;
|
| }
|
|
|