| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_BROWSER_EXTENSIONS_SCRIPT_EXECUTION_OBSERVER_H_ | 5 #ifndef EXTENSIONS_BROWSER_SCRIPT_EXECUTION_OBSERVER_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_SCRIPT_EXECUTION_OBSERVER_H_ | 6 #define EXTENSIONS_BROWSER_SCRIPT_EXECUTION_OBSERVER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 class GURL; | 12 class GURL; |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 class WebContents; | 15 class WebContents; |
| 16 } | 16 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 34 const content::WebContents* web_contents, | 34 const content::WebContents* web_contents, |
| 35 const ExecutingScriptsMap& executing_scripts_map, | 35 const ExecutingScriptsMap& executing_scripts_map, |
| 36 const GURL& on_url) = 0; | 36 const GURL& on_url) = 0; |
| 37 | 37 |
| 38 protected: | 38 protected: |
| 39 virtual ~ScriptExecutionObserver(); | 39 virtual ~ScriptExecutionObserver(); |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 } // namespace extensions | 42 } // namespace extensions |
| 43 | 43 |
| 44 #endif // CHROME_BROWSER_EXTENSIONS_SCRIPT_EXECUTION_OBSERVER_H_ | 44 #endif // EXTENSIONS_BROWSER_SCRIPT_EXECUTION_OBSERVER_H_ |
| OLD | NEW |