commit | e1c5dfdaff5d1b774b612b246c6407310c5892f8 | [log] [tgz] |
---|---|---|
author | Lucas Furukawa Gadani <[email protected]> | Thu Nov 29 17:57:41 2018 |
committer | Commit Bot <[email protected]> | Thu Nov 29 17:57:41 2018 |
tree | fc897dabc2d54ee0e0ee67214764414facd16938 | |
parent | 5681e43c6b36888b5cb10c87028b840ad817e21a [diff] [blame] |
Remove const interfaces from content::WebContents. Bug: 908139 Change-Id: I678dc64c18e78392493c2fc3acba974b3b6a28f8 Reviewed-on: https://chromium-review.googlesource.com/c/1349466 Reviewed-by: John Abd-El-Malek <[email protected]> Commit-Queue: Lucas Gadani <[email protected]> Cr-Commit-Position: refs/heads/master@{#612261}
diff --git a/extensions/browser/script_executor.h b/extensions/browser/script_executor.h index ce07949..0e5b2407 100644 --- a/extensions/browser/script_executor.h +++ b/extensions/browser/script_executor.h
@@ -36,7 +36,7 @@ // Callback that ScriptExecutor uses to notify when content scripts and/or // tabs.executeScript calls run on a page. using ScriptsExecutedNotification = base::RepeatingCallback< - void(const content::WebContents*, const ExecutingScriptsMap&, const GURL&)>; + void(content::WebContents*, const ExecutingScriptsMap&, const GURL&)>; // Interface for executing extension content scripts (e.g. executeScript) as // described by the ExtensionMsg_ExecuteCode_Params IPC, and notifying the