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 // This class responds to requests from renderers for the list of plugins, and | 5 // This class responds to requests from renderers for the list of plugins, and |
6 // also a proxy object for plugin instances. | 6 // also a proxy object for plugin instances. |
7 | 7 |
8 #ifndef CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ | 8 #ifndef CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ |
9 #define CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ | 9 #define CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ |
10 | 10 |
11 #if !defined(ENABLE_PLUGINS) | 11 #if !defined(ENABLE_PLUGINS) |
12 #error "Plugins should be enabled" | 12 #error "Plugins should be enabled" |
13 #endif | 13 #endif |
14 | 14 |
15 #include <map> | 15 #include <map> |
16 #include <set> | 16 #include <set> |
17 #include <vector> | 17 #include <vector> |
18 | 18 |
19 #include "base/basictypes.h" | |
20 #include "base/compiler_specific.h" | 19 #include "base/compiler_specific.h" |
| 20 #include "base/macros.h" |
21 #include "base/memory/scoped_vector.h" | 21 #include "base/memory/scoped_vector.h" |
22 #include "base/memory/singleton.h" | 22 #include "base/memory/singleton.h" |
23 #include "base/synchronization/waitable_event_watcher.h" | 23 #include "base/synchronization/waitable_event_watcher.h" |
24 #include "base/threading/sequenced_worker_pool.h" | 24 #include "base/threading/sequenced_worker_pool.h" |
25 #include "base/time/time.h" | 25 #include "base/time/time.h" |
26 #include "build/build_config.h" | 26 #include "build/build_config.h" |
27 #include "content/browser/plugin_process_host.h" | 27 #include "content/browser/plugin_process_host.h" |
28 #include "content/browser/ppapi_plugin_process_host.h" | 28 #include "content/browser/ppapi_plugin_process_host.h" |
29 #include "content/common/content_export.h" | 29 #include "content/common/content_export.h" |
30 #include "content/public/browser/plugin_service.h" | 30 #include "content/public/browser/plugin_service.h" |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 | 247 |
248 // Used to detect if a given plugin is crashing over and over. | 248 // Used to detect if a given plugin is crashing over and over. |
249 std::map<base::FilePath, std::vector<base::Time> > crash_times_; | 249 std::map<base::FilePath, std::vector<base::Time> > crash_times_; |
250 | 250 |
251 DISALLOW_COPY_AND_ASSIGN(PluginServiceImpl); | 251 DISALLOW_COPY_AND_ASSIGN(PluginServiceImpl); |
252 }; | 252 }; |
253 | 253 |
254 } // namespace content | 254 } // namespace content |
255 | 255 |
256 #endif // CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ | 256 #endif // CONTENT_BROWSER_PLUGIN_SERVICE_IMPL_H_ |
OLD | NEW |