OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_RENDERER_DISPATCHER_H_ | 5 #ifndef EXTENSIONS_RENDERER_DISPATCHER_H_ |
6 #define EXTENSIONS_RENDERER_DISPATCHER_H_ | 6 #define EXTENSIONS_RENDERER_DISPATCHER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <utility> | 11 #include <utility> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
| 14 #include "base/gtest_prod_util.h" |
14 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
15 #include "base/scoped_observer.h" | 16 #include "base/scoped_observer.h" |
16 #include "base/timer/timer.h" | 17 #include "base/timer/timer.h" |
17 #include "content/public/renderer/render_process_observer.h" | 18 #include "content/public/renderer/render_process_observer.h" |
18 #include "extensions/common/event_filter.h" | 19 #include "extensions/common/event_filter.h" |
19 #include "extensions/common/extension.h" | 20 #include "extensions/common/extension.h" |
20 #include "extensions/common/extensions_client.h" | 21 #include "extensions/common/extensions_client.h" |
21 #include "extensions/common/features/feature.h" | 22 #include "extensions/common/features/feature.h" |
22 #include "extensions/renderer/resource_bundle_source_map.h" | 23 #include "extensions/renderer/resource_bundle_source_map.h" |
23 #include "extensions/renderer/script_context.h" | 24 #include "extensions/renderer/script_context.h" |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 // if this renderer is a WebView guest render process. Otherwise, this will be | 307 // if this renderer is a WebView guest render process. Otherwise, this will be |
307 // empty. | 308 // empty. |
308 std::string webview_partition_id_; | 309 std::string webview_partition_id_; |
309 | 310 |
310 DISALLOW_COPY_AND_ASSIGN(Dispatcher); | 311 DISALLOW_COPY_AND_ASSIGN(Dispatcher); |
311 }; | 312 }; |
312 | 313 |
313 } // namespace extensions | 314 } // namespace extensions |
314 | 315 |
315 #endif // EXTENSIONS_RENDERER_DISPATCHER_H_ | 316 #endif // EXTENSIONS_RENDERER_DISPATCHER_H_ |
OLD | NEW |