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

Side by Side Diff: extensions/browser/api/execute_code_function.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
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 11
12 namespace extensions { 12 namespace extensions {
13 13
14 // Base class for javascript code injection. 14 // Base class for javascript code injection.
15 // This is used by both chrome.webview.executeScript and 15 // This is used by both chrome.webview.executeScript and
16 // chrome.tabs.executeScript. 16 // chrome.tabs.executeScript.
17 class ExecuteCodeFunction : public AsyncExtensionFunction { 17 class ExecuteCodeFunction : public AsyncExtensionFunction {
18 public: 18 public:
19 ExecuteCodeFunction(); 19 ExecuteCodeFunction();
20 20
21 protected: 21 protected:
22 virtual ~ExecuteCodeFunction(); 22 virtual ~ExecuteCodeFunction();
23 23
24 // ExtensionFunction implementation. 24 // ExtensionFunction implementation.
25 virtual bool HasPermission() OVERRIDE; 25 virtual bool HasPermission() override;
26 virtual bool RunAsync() OVERRIDE; 26 virtual bool RunAsync() override;
27 27
28 // Initialize |details_| if it hasn't already been. 28 // Initialize |details_| if it hasn't already been.
29 virtual bool Init() = 0; 29 virtual bool Init() = 0;
30 virtual bool ShouldInsertCSS() const = 0; 30 virtual bool ShouldInsertCSS() const = 0;
31 virtual bool CanExecuteScriptOnPage() = 0; 31 virtual bool CanExecuteScriptOnPage() = 0;
32 virtual ScriptExecutor* GetScriptExecutor() = 0; 32 virtual ScriptExecutor* GetScriptExecutor() = 0;
33 virtual bool IsWebView() const = 0; 33 virtual bool IsWebView() const = 0;
34 virtual const GURL& GetWebViewSrc() const = 0; 34 virtual const GURL& GetWebViewSrc() const = 0;
35 virtual void OnExecuteCodeFinished(const std::string& error, 35 virtual void OnExecuteCodeFinished(const std::string& error,
36 const GURL& on_url, 36 const GURL& on_url,
(...skipping 26 matching lines...) Expand all
63 // specified in JSON arguments. 63 // specified in JSON arguments.
64 ExtensionResource resource_; 64 ExtensionResource resource_;
65 65
66 // The URL of the file being injected into the page. 66 // The URL of the file being injected into the page.
67 GURL file_url_; 67 GURL file_url_;
68 }; 68 };
69 69
70 } // namespace extensions 70 } // namespace extensions
71 71
72 #endif // EXTENSIONS_BROWSER_API_EXECUTE_CODE_FUNCTION_H_ 72 #endif // EXTENSIONS_BROWSER_API_EXECUTE_CODE_FUNCTION_H_
OLDNEW
« no previous file with comments | « extensions/browser/api/dns/dns_apitest.cc ('k') | extensions/browser/api/guest_view/guest_view_internal_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698