Index: chrome/common/chrome_content_client.cc |
diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc |
index d20802ddede8f80cd3a134d9e37f84f59a9662d5..a89c084414d4e3368560b6aad454dc75301adf1b 100644 |
--- a/chrome/common/chrome_content_client.cc |
+++ b/chrome/common/chrome_content_client.cc |
@@ -173,7 +173,8 @@ void ComputeBuiltInPlugins(std::vector<content::PepperPluginInfo>* plugins) { |
kNaClPluginExtension, |
kNaClPluginDescription); |
nacl.mime_types.push_back(nacl_mime_type); |
- if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kEnablePnacl)) { |
+ if (!CommandLine::ForCurrentProcess()->HasSwitch( |
+ switches::kDisablePnacl)) { |
Mark Seaborn
2013/07/18 01:25:52
Indent by 4 more chars. Should be indented as:
/
sehr
2013/07/22 23:06:50
vim's auto indent disagrees with you, but done.
O
|
webkit::WebPluginMimeType pnacl_mime_type(kPnaclPluginMimeType, |
kPnaclPluginExtension, |
kPnaclPluginDescription); |