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/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" | 16 #include "chrome/common/extensions/features/feature.h" |
17 #include "chrome/renderer/extensions/chrome_v8_context.h" | 17 #include "chrome/renderer/extensions/chrome_v8_context.h" |
18 #include "chrome/renderer/extensions/chrome_v8_context_set.h" | 18 #include "chrome/renderer/extensions/chrome_v8_context_set.h" |
19 #include "chrome/renderer/extensions/v8_schema_registry.h" | 19 #include "chrome/renderer/extensions/v8_schema_registry.h" |
20 #include "chrome/renderer/resource_bundle_source_map.h" | 20 #include "chrome/renderer/resource_bundle_source_map.h" |
21 #include "content/public/renderer/render_process_observer.h" | 21 #include "content/public/renderer/render_process_observer.h" |
22 #include "extensions/common/event_filter.h" | 22 #include "extensions/common/event_filter.h" |
23 #include "v8/include/v8.h" | 23 #include "v8/include/v8.h" |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 // The platforms system font family and size; | 294 // The platforms system font family and size; |
295 std::string system_font_family_; | 295 std::string system_font_family_; |
296 std::string system_font_size_; | 296 std::string system_font_size_; |
297 | 297 |
298 DISALLOW_COPY_AND_ASSIGN(Dispatcher); | 298 DISALLOW_COPY_AND_ASSIGN(Dispatcher); |
299 }; | 299 }; |
300 | 300 |
301 } // namespace extensions | 301 } // namespace extensions |
302 | 302 |
303 #endif // CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ | 303 #endif // CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ |
OLD | NEW |