| 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 "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "chrome/common/extensions/features/feature.h" | |
| 13 #include "chrome/renderer/extensions/module_system.h" | 12 #include "chrome/renderer/extensions/module_system.h" |
| 14 #include "chrome/renderer/extensions/request_sender.h" | 13 #include "chrome/renderer/extensions/request_sender.h" |
| 15 #include "chrome/renderer/extensions/safe_builtins.h" | 14 #include "chrome/renderer/extensions/safe_builtins.h" |
| 16 #include "chrome/renderer/extensions/scoped_persistent.h" | 15 #include "chrome/renderer/extensions/scoped_persistent.h" |
| 16 #include "extensions/common/features/feature.h" |
| 17 #include "v8/include/v8.h" | 17 #include "v8/include/v8.h" |
| 18 | 18 |
| 19 namespace WebKit { | 19 namespace WebKit { |
| 20 class WebFrame; | 20 class WebFrame; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace content { | 23 namespace content { |
| 24 class RenderView; | 24 class RenderView; |
| 25 } | 25 } |
| 26 | 26 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 136 |
| 137 // Contains safe copies of builtin objects like Function.prototype. | 137 // Contains safe copies of builtin objects like Function.prototype. |
| 138 SafeBuiltins safe_builtins_; | 138 SafeBuiltins safe_builtins_; |
| 139 | 139 |
| 140 DISALLOW_COPY_AND_ASSIGN(ChromeV8Context); | 140 DISALLOW_COPY_AND_ASSIGN(ChromeV8Context); |
| 141 }; | 141 }; |
| 142 | 142 |
| 143 } // namespace extensions | 143 } // namespace extensions |
| 144 | 144 |
| 145 #endif // CHROME_RENDERER_EXTENSIONS_CHROME_V8_CONTEXT_H_ | 145 #endif // CHROME_RENDERER_EXTENSIONS_CHROME_V8_CONTEXT_H_ |
| OLD | NEW |