OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_PLUGIN_SERVICE_H_ | 8 #ifndef CHROME_BROWSER_PLUGIN_SERVICE_H_ |
9 #define CHROME_BROWSER_PLUGIN_SERVICE_H_ | 9 #define CHROME_BROWSER_PLUGIN_SERVICE_H_ |
10 #pragma once | 10 #pragma once |
11 | 11 |
12 #include <string> | 12 #include <string> |
13 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
15 #include "base/file_path.h" | 15 #include "base/file_path.h" |
16 #include "base/hash_tables.h" | 16 #include "base/hash_tables.h" |
17 #include "base/ref_counted.h" | |
18 #include "base/singleton.h" | 17 #include "base/singleton.h" |
19 #include "base/waitable_event_watcher.h" | 18 #include "base/waitable_event_watcher.h" |
20 #include "chrome/common/notification_observer.h" | 19 #include "chrome/common/notification_observer.h" |
21 #include "chrome/common/notification_registrar.h" | 20 #include "chrome/common/notification_registrar.h" |
22 #include "googleurl/src/gurl.h" | 21 #include "googleurl/src/gurl.h" |
23 | 22 |
24 #if defined(OS_WIN) | 23 #if defined(OS_WIN) |
25 #include "base/registry.h" | 24 #include "base/registry.h" |
26 #include "base/scoped_ptr.h" | 25 #include "base/scoped_ptr.h" |
27 #endif | 26 #endif |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 base::WaitableEventWatcher hklm_watcher_; | 144 base::WaitableEventWatcher hklm_watcher_; |
146 #endif | 145 #endif |
147 | 146 |
148 // Set to true if chrome plugins are enabled. Defaults to true. | 147 // Set to true if chrome plugins are enabled. Defaults to true. |
149 static bool enable_chrome_plugins_; | 148 static bool enable_chrome_plugins_; |
150 | 149 |
151 DISALLOW_COPY_AND_ASSIGN(PluginService); | 150 DISALLOW_COPY_AND_ASSIGN(PluginService); |
152 }; | 151 }; |
153 | 152 |
154 #endif // CHROME_BROWSER_PLUGIN_SERVICE_H_ | 153 #endif // CHROME_BROWSER_PLUGIN_SERVICE_H_ |
OLD | NEW |