Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef EXTENSIONS_BROWSER_API_EXECUTE_CODE_FUNCTION_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_EXECUTE_CODE_FUNCTION_H_ |
| 6 #define EXTENSIONS_BROWSER_API_EXECUTE_CODE_FUNCTION_H_ | 6 #define EXTENSIONS_BROWSER_API_EXECUTE_CODE_FUNCTION_H_ |
| 7 | 7 |
| 8 #include "extensions/browser/extension_function.h" | 8 #include "extensions/browser/extension_function.h" |
| 9 #include "extensions/browser/script_executor.h" | 9 #include "extensions/browser/script_executor.h" |
| 10 #include "extensions/common/api/extension_types.h" | 10 #include "extensions/common/api/extension_types.h" |
| 11 #include "extensions/common/host_id.h" | 11 #include "extensions/common/host_id.h" |
| 12 | 12 |
| 13 namespace extensions { | 13 namespace extensions { |
| 14 | 14 |
| 15 // Base class for javascript code injection. | 15 // Base class for javascript code injection. |
| 16 // This is used by both chrome.webview.executeScript and | 16 // This is used by both chrome.webview.executeScript and |
| 17 // chrome.tabs.executeScript. | 17 // chrome.tabs.executeScript. |
| 18 class ExecuteCodeFunction : public AsyncExtensionFunction { | 18 class ExecuteCodeFunction : public AsyncExtensionFunction { |
| 19 public: | 19 public: |
| 20 // Called when a file URL request is complete. | |
| 21 // Parameters: | |
| 22 // - whether the request is success. | |
| 23 // - If yes, the content of the file. | |
| 24 using WebUILoadFileCallback = base::Callback<void(bool, const std::string&)>; | |
|
Devlin
2015/03/23 22:03:25
This doesn't belong here.
Xi Han
2015/03/24 15:11:48
Move to WebViewInternalExecuteCodeFunction.
| |
| 20 ExecuteCodeFunction(); | 25 ExecuteCodeFunction(); |
| 21 | 26 |
| 22 protected: | 27 protected: |
| 23 ~ExecuteCodeFunction() override; | 28 ~ExecuteCodeFunction() override; |
| 24 | 29 |
| 25 // ExtensionFunction implementation. | 30 // ExtensionFunction implementation. |
| 26 bool HasPermission() override; | 31 bool HasPermission() override; |
| 27 bool RunAsync() override; | 32 bool RunAsync() override; |
| 28 | 33 |
| 29 // Initialize |details_| if it hasn't already been. | 34 // Initialize |details_| if it hasn't already been. |
| 30 virtual bool Init() = 0; | 35 virtual bool Init() = 0; |
| 31 virtual bool ShouldInsertCSS() const = 0; | 36 virtual bool ShouldInsertCSS() const = 0; |
| 32 virtual bool CanExecuteScriptOnPage() = 0; | 37 virtual bool CanExecuteScriptOnPage() = 0; |
| 33 virtual ScriptExecutor* GetScriptExecutor() = 0; | 38 virtual ScriptExecutor* GetScriptExecutor() = 0; |
| 34 virtual bool IsWebView() const = 0; | 39 virtual bool IsWebView() const = 0; |
| 35 virtual const GURL& GetWebViewSrc() const = 0; | 40 virtual const GURL& GetWebViewSrc() const = 0; |
| 36 virtual void OnExecuteCodeFinished(const std::string& error, | 41 virtual void OnExecuteCodeFinished(const std::string& error, |
| 37 const GURL& on_url, | 42 const GURL& on_url, |
| 38 const base::ListValue& result); | 43 const base::ListValue& result); |
| 39 | 44 |
| 40 // The injection details. | 45 // The injection details. |
| 41 scoped_ptr<core_api::extension_types::InjectDetails> details_; | 46 scoped_ptr<core_api::extension_types::InjectDetails> details_; |
| 42 | 47 |
| 43 const HostID& host_id() const { return host_id_; } | 48 const HostID& host_id() const { return host_id_; } |
| 44 void set_host_id(HostID host_id) { | 49 void set_host_id(HostID host_id) { |
| 45 host_id_ = host_id; | 50 host_id_ = host_id; |
| 46 } | 51 } |
| 47 | 52 |
| 53 protected: | |
| 54 virtual bool LoadFile(const std::string& file); | |
| 55 | |
| 56 // Run in UI thread. Code string contains the code to be executed. Returns | |
| 57 // true on success. If true is returned, this does an AddRef. | |
| 58 bool Execute(const std::string& code_string); | |
| 59 | |
| 48 private: | 60 private: |
| 49 // Called when contents from the file whose path is specified in JSON | 61 // Called when contents from the file whose path is specified in JSON |
| 50 // arguments has been loaded. | 62 // arguments has been loaded. |
| 51 void DidLoadFile(bool success, const std::string& data); | 63 void DidLoadFile(bool success, const std::string& data); |
| 52 | 64 |
| 53 // Runs on FILE thread. Loads message bundles for the extension and | 65 // Runs on FILE thread. Loads message bundles for the extension and |
| 54 // localizes the CSS data. Calls back DidLoadAndLocalizeFile on the UI thread. | 66 // localizes the CSS data. Calls back DidLoadAndLocalizeFile on the UI thread. |
| 55 void GetFileURLAndLocalizeCSS(ScriptExecutor::ScriptType script_type, | 67 void GetFileURLAndLocalizeCSS(ScriptExecutor::ScriptType script_type, |
| 56 const std::string& data, | 68 const std::string& data, |
| 57 const std::string& extension_id, | 69 const std::string& extension_id, |
| 58 const base::FilePath& extension_path, | 70 const base::FilePath& extension_path, |
| 59 const std::string& extension_default_locale); | 71 const std::string& extension_default_locale); |
| 60 | 72 |
| 61 // Called when contents from the loaded file have been localized. | 73 // Called when contents from the loaded file have been localized. |
| 62 void DidLoadAndLocalizeFile(bool success, const std::string& data); | 74 void DidLoadAndLocalizeFile(bool success, const std::string& data); |
| 63 | 75 |
| 64 // Run in UI thread. Code string contains the code to be executed. Returns | |
| 65 // true on success. If true is returned, this does an AddRef. | |
| 66 bool Execute(const std::string& code_string); | |
| 67 | |
| 68 // Contains extension resource built from path of file which is | 76 // Contains extension resource built from path of file which is |
| 69 // specified in JSON arguments. | 77 // specified in JSON arguments. |
| 70 ExtensionResource resource_; | 78 ExtensionResource resource_; |
| 71 | 79 |
| 72 // The URL of the file being injected into the page. | 80 // The URL of the file being injected into the page. |
| 73 GURL file_url_; | 81 GURL file_url_; |
| 74 | 82 |
| 75 // The ID of the injection host. | 83 // The ID of the injection host. |
| 76 HostID host_id_; | 84 HostID host_id_; |
| 77 }; | 85 }; |
| 78 | 86 |
| 79 } // namespace extensions | 87 } // namespace extensions |
| 80 | 88 |
| 81 #endif // EXTENSIONS_BROWSER_API_EXECUTE_CODE_FUNCTION_H_ | 89 #endif // EXTENSIONS_BROWSER_API_EXECUTE_CODE_FUNCTION_H_ |
| OLD | NEW |