| 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" | |
| 16 #include "chrome/renderer/extensions/chrome_v8_context.h" | 15 #include "chrome/renderer/extensions/chrome_v8_context.h" |
| 17 #include "chrome/renderer/extensions/chrome_v8_context_set.h" | 16 #include "chrome/renderer/extensions/chrome_v8_context_set.h" |
| 18 #include "chrome/renderer/extensions/v8_schema_registry.h" | 17 #include "chrome/renderer/extensions/v8_schema_registry.h" |
| 19 #include "chrome/renderer/resource_bundle_source_map.h" | 18 #include "chrome/renderer/resource_bundle_source_map.h" |
| 20 #include "content/public/renderer/render_process_observer.h" | 19 #include "content/public/renderer/render_process_observer.h" |
| 21 #include "extensions/common/event_filter.h" | 20 #include "extensions/common/event_filter.h" |
| 21 #include "extensions/common/extension_set.h" |
| 22 #include "extensions/common/extensions_client.h" | 22 #include "extensions/common/extensions_client.h" |
| 23 #include "extensions/common/features/feature.h" | 23 #include "extensions/common/features/feature.h" |
| 24 #include "third_party/WebKit/public/platform/WebString.h" | 24 #include "third_party/WebKit/public/platform/WebString.h" |
| 25 #include "third_party/WebKit/public/platform/WebVector.h" | 25 #include "third_party/WebKit/public/platform/WebVector.h" |
| 26 #include "v8/include/v8.h" | 26 #include "v8/include/v8.h" |
| 27 | 27 |
| 28 class ChromeRenderViewTest; | 28 class ChromeRenderViewTest; |
| 29 class GURL; | 29 class GURL; |
| 30 class ModuleSystem; | 30 class ModuleSystem; |
| 31 class URLPattern; | 31 class URLPattern; |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 // The platforms system font family and size; | 308 // The platforms system font family and size; |
| 309 std::string system_font_family_; | 309 std::string system_font_family_; |
| 310 std::string system_font_size_; | 310 std::string system_font_size_; |
| 311 | 311 |
| 312 DISALLOW_COPY_AND_ASSIGN(Dispatcher); | 312 DISALLOW_COPY_AND_ASSIGN(Dispatcher); |
| 313 }; | 313 }; |
| 314 | 314 |
| 315 } // namespace extensions | 315 } // namespace extensions |
| 316 | 316 |
| 317 #endif // CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ | 317 #endif // CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ |
| OLD | NEW |