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

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

Issue 2080016: Don't use command line flags for enabling the internal pdf plugin. Instead, ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/dom_ui/plugins_ui.cc ('k') | chrome/browser/plugin_service.cc » ('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
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 RegKey hklm_key_; 146 RegKey hklm_key_;
147 scoped_ptr<base::WaitableEvent> hkcu_event_; 147 scoped_ptr<base::WaitableEvent> hkcu_event_;
148 scoped_ptr<base::WaitableEvent> hklm_event_; 148 scoped_ptr<base::WaitableEvent> hklm_event_;
149 base::WaitableEventWatcher hkcu_watcher_; 149 base::WaitableEventWatcher hkcu_watcher_;
150 base::WaitableEventWatcher hklm_watcher_; 150 base::WaitableEventWatcher hklm_watcher_;
151 #endif 151 #endif
152 152
153 // Set to true if chrome plugins are enabled. Defaults to true. 153 // Set to true if chrome plugins are enabled. Defaults to true.
154 static bool enable_chrome_plugins_; 154 static bool enable_chrome_plugins_;
155 155
156 // Set to true iff the internal pdf plugin is enabled by default.
157 static bool enable_internal_pdf_;
158
156 DISALLOW_COPY_AND_ASSIGN(PluginService); 159 DISALLOW_COPY_AND_ASSIGN(PluginService);
157 }; 160 };
158 161
159 #endif // CHROME_BROWSER_PLUGIN_SERVICE_H_ 162 #endif // CHROME_BROWSER_PLUGIN_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/plugins_ui.cc ('k') | chrome/browser/plugin_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698