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

Unified Diff: chrome/browser/plugins/plugin_prefs.cc

Issue 816403003: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/plugins/plugin_prefs.cc
diff --git a/chrome/browser/plugins/plugin_prefs.cc b/chrome/browser/plugins/plugin_prefs.cc
index 25d35160561705e6eb8879d7665cba8c0ec60315..1dd8d77dabf443a9ce86bac59b2cd84c822a3d34 100644
--- a/chrome/browser/plugins/plugin_prefs.cc
+++ b/chrome/browser/plugins/plugin_prefs.cc
@@ -250,7 +250,8 @@ bool PluginPrefs::IsPluginEnabled(const content::WebPluginInfo& plugin) const {
// information.
// TODO(dspringer): When NaCl is on by default, remove this code.
if ((plugin.name == base::ASCIIToUTF16(nacl::kNaClPluginName)) &&
- CommandLine::ForCurrentProcess()->HasSwitch(switches::kEnableNaCl)) {
+ base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kEnableNaCl)) {
return true;
}
#endif

Powered by Google App Engine
This is Rietveld 408576698