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_CHROME_V8_CONTEXT_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_CHROME_V8_CONTEXT_H_ |
6 #define CHROME_RENDERER_EXTENSIONS_CHROME_V8_CONTEXT_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_CHROME_V8_CONTEXT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "chrome/common/extensions/features/feature.h" | 11 #include "chrome/common/extensions/features/feature.h" |
12 #include "chrome/renderer/module_system.h" | 12 #include "chrome/renderer/extensions/module_system.h" |
13 #include "v8/include/v8.h" | 13 #include "v8/include/v8.h" |
14 | 14 |
15 namespace WebKit { | 15 namespace WebKit { |
16 class WebFrame; | 16 class WebFrame; |
17 } | 17 } |
18 | 18 |
19 namespace content { | 19 namespace content { |
20 class RenderView; | 20 class RenderView; |
21 } | 21 } |
22 | 22 |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 | 127 |
128 // The extension APIs available to this context. | 128 // The extension APIs available to this context. |
129 scoped_ptr<std::set<std::string> > available_extension_apis_; | 129 scoped_ptr<std::set<std::string> > available_extension_apis_; |
130 | 130 |
131 DISALLOW_COPY_AND_ASSIGN(ChromeV8Context); | 131 DISALLOW_COPY_AND_ASSIGN(ChromeV8Context); |
132 }; | 132 }; |
133 | 133 |
134 } // namespace extensions | 134 } // namespace extensions |
135 | 135 |
136 #endif // CHROME_RENDERER_EXTENSIONS_CHROME_V8_CONTEXT_H_ | 136 #endif // CHROME_RENDERER_EXTENSIONS_CHROME_V8_CONTEXT_H_ |
OLD | NEW |