| 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_DISPATCHER_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ |
| 6 #define CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_DISPATCHER_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/shared_memory.h" | 13 #include "base/memory/shared_memory.h" |
| 14 #include "base/timer/timer.h" | 14 #include "base/timer/timer.h" |
| 15 #include "chrome/common/extensions/extension_set.h" | 15 #include "chrome/common/extensions/extension_set.h" |
| 16 #include "chrome/common/extensions/features/feature.h" | |
| 17 #include "chrome/renderer/extensions/chrome_v8_context.h" | 16 #include "chrome/renderer/extensions/chrome_v8_context.h" |
| 18 #include "chrome/renderer/extensions/chrome_v8_context_set.h" | 17 #include "chrome/renderer/extensions/chrome_v8_context_set.h" |
| 19 #include "chrome/renderer/extensions/v8_schema_registry.h" | 18 #include "chrome/renderer/extensions/v8_schema_registry.h" |
| 20 #include "chrome/renderer/resource_bundle_source_map.h" | 19 #include "chrome/renderer/resource_bundle_source_map.h" |
| 21 #include "content/public/renderer/render_process_observer.h" | 20 #include "content/public/renderer/render_process_observer.h" |
| 22 #include "extensions/common/event_filter.h" | 21 #include "extensions/common/event_filter.h" |
| 22 #include "extensions/common/features/feature.h" |
| 23 #include "v8/include/v8.h" | 23 #include "v8/include/v8.h" |
| 24 | 24 |
| 25 class ChromeRenderViewTest; | 25 class ChromeRenderViewTest; |
| 26 class GURL; | 26 class GURL; |
| 27 class ModuleSystem; | 27 class ModuleSystem; |
| 28 class URLPattern; | 28 class URLPattern; |
| 29 struct ExtensionMsg_ExternalConnectionInfo; | 29 struct ExtensionMsg_ExternalConnectionInfo; |
| 30 struct ExtensionMsg_Loaded_Params; | 30 struct ExtensionMsg_Loaded_Params; |
| 31 | 31 |
| 32 namespace WebKit { | 32 namespace WebKit { |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 // The platforms system font family and size; | 299 // The platforms system font family and size; |
| 300 std::string system_font_family_; | 300 std::string system_font_family_; |
| 301 std::string system_font_size_; | 301 std::string system_font_size_; |
| 302 | 302 |
| 303 DISALLOW_COPY_AND_ASSIGN(Dispatcher); | 303 DISALLOW_COPY_AND_ASSIGN(Dispatcher); |
| 304 }; | 304 }; |
| 305 | 305 |
| 306 } // namespace extensions | 306 } // namespace extensions |
| 307 | 307 |
| 308 #endif // CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ | 308 #endif // CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ |
| OLD | NEW |