OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_RENDERER_EXTENSIONS_USER_SCRIPT_SLAVE_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_USER_SCRIPT_SLAVE_H_ |
6 #define CHROME_RENDERER_EXTENSIONS_USER_SCRIPT_SLAVE_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_USER_SCRIPT_SLAVE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/shared_memory.h" | 14 #include "base/memory/shared_memory.h" |
15 #include "base/stl_util.h" | 15 #include "base/stl_util.h" |
16 #include "base/strings/string_piece.h" | 16 #include "base/strings/string_piece.h" |
17 #include "extensions/common/user_script.h" | 17 #include "extensions/common/user_script.h" |
18 #include "third_party/WebKit/public/web/WebScriptSource.h" | 18 #include "third_party/WebKit/public/web/WebScriptSource.h" |
19 | 19 |
20 class ExtensionSet; | |
21 class GURL; | 20 class GURL; |
22 | 21 |
23 namespace blink { | 22 namespace blink { |
24 class WebFrame; | 23 class WebFrame; |
25 } | 24 } |
26 | 25 |
27 using blink::WebScriptSource; | 26 using blink::WebScriptSource; |
28 | 27 |
29 namespace extensions { | 28 namespace extensions { |
30 class Extension; | 29 class Extension; |
| 30 class ExtensionSet; |
31 | 31 |
32 // Manages installed UserScripts for a render process. | 32 // Manages installed UserScripts for a render process. |
33 class UserScriptSlave { | 33 class UserScriptSlave { |
34 public: | 34 public: |
35 // Utility to get the URL we will match against for a frame. If the frame has | 35 // Utility to get the URL we will match against for a frame. If the frame has |
36 // committed, this is the commited URL. Otherwise it is the provisional URL. | 36 // committed, this is the commited URL. Otherwise it is the provisional URL. |
37 static GURL GetDataSourceURLForFrame(const blink::WebFrame* frame); | 37 static GURL GetDataSourceURLForFrame(const blink::WebFrame* frame); |
38 | 38 |
39 explicit UserScriptSlave(const ExtensionSet* extensions); | 39 explicit UserScriptSlave(const ExtensionSet* extensions); |
40 ~UserScriptSlave(); | 40 ~UserScriptSlave(); |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 typedef std::map<std::string, int> IsolatedWorldMap; | 83 typedef std::map<std::string, int> IsolatedWorldMap; |
84 IsolatedWorldMap isolated_world_ids_; | 84 IsolatedWorldMap isolated_world_ids_; |
85 | 85 |
86 DISALLOW_COPY_AND_ASSIGN(UserScriptSlave); | 86 DISALLOW_COPY_AND_ASSIGN(UserScriptSlave); |
87 }; | 87 }; |
88 | 88 |
89 } // namespace extensions | 89 } // namespace extensions |
90 | 90 |
91 #endif // CHROME_RENDERER_EXTENSIONS_USER_SCRIPT_SLAVE_H_ | 91 #endif // CHROME_RENDERER_EXTENSIONS_USER_SCRIPT_SLAVE_H_ |
OLD | NEW |