Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: chrome/browser/plugin_service.h

Issue 2965015: Attempt four at landing the "histogram.h removed from message_loop.h" patch. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: win build fixes Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/plugin_process_host.h ('k') | chrome/browser/printing/print_job.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 10
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
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" 17 #include "base/ref_counted.h"
18 #include "base/singleton.h" 18 #include "base/singleton.h"
19 #include "base/waitable_event_watcher.h" 19 #include "base/waitable_event_watcher.h"
20 #include "chrome/browser/browser_process.h" 20 #include "chrome/browser/browser_process.h"
21 #include "chrome/common/notification_observer.h" 21 #include "chrome/common/notification_observer.h"
22 #include "chrome/common/notification_registrar.h" 22 #include "chrome/common/notification_registrar.h"
23 #include "googleurl/src/gurl.h" 23 #include "googleurl/src/gurl.h"
24 24
25 #if defined(OS_WIN) 25 #if defined(OS_WIN)
26 #include "base/registry.h" 26 #include "base/registry.h"
27 #include "base/scoped_ptr.h"
27 #endif 28 #endif
28 29
29 namespace IPC { 30 namespace IPC {
30 class Message; 31 class Message;
31 } 32 }
32 33
33 class MessageLoop; 34 class MessageLoop;
34 class PluginProcessHost; 35 class PluginProcessHost;
35 class Profile; 36 class Profile;
36 class URLRequestContext; 37 class URLRequestContext;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 base::WaitableEventWatcher hklm_watcher_; 154 base::WaitableEventWatcher hklm_watcher_;
154 #endif 155 #endif
155 156
156 // Set to true if chrome plugins are enabled. Defaults to true. 157 // Set to true if chrome plugins are enabled. Defaults to true.
157 static bool enable_chrome_plugins_; 158 static bool enable_chrome_plugins_;
158 159
159 DISALLOW_COPY_AND_ASSIGN(PluginService); 160 DISALLOW_COPY_AND_ASSIGN(PluginService);
160 }; 161 };
161 162
162 #endif // CHROME_BROWSER_PLUGIN_SERVICE_H_ 163 #endif // CHROME_BROWSER_PLUGIN_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/plugin_process_host.h ('k') | chrome/browser/printing/print_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698