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

Side by Side Diff: chrome/common/pref_names.cc

Issue 7720021: Add a preference to force enable the NaCl plugin as we transition to (Closed) Base URL: svn://svn.chromium.org/chrome/branches/835/src/
Patch Set: Created 9 years, 4 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/common/pref_names.h ('k') | no next file » | 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 const char kPluginsDisabledPluginsExceptions[] = 580 const char kPluginsDisabledPluginsExceptions[] =
581 "plugins.plugins_disabled_exceptions"; 581 "plugins.plugins_disabled_exceptions";
582 582
583 // List pref containing names of plugins that are enabled by policy. 583 // List pref containing names of plugins that are enabled by policy.
584 const char kPluginsEnabledPlugins[] = "plugins.plugins_enabled"; 584 const char kPluginsEnabledPlugins[] = "plugins.plugins_enabled";
585 585
586 // When first shipped, the pdf plugin will be disabled by default. When we 586 // When first shipped, the pdf plugin will be disabled by default. When we
587 // enable it by default, we'll want to do so only once. 587 // enable it by default, we'll want to do so only once.
588 const char kPluginsEnabledInternalPDF[] = "plugins.enabled_internal_pdf3"; 588 const char kPluginsEnabledInternalPDF[] = "plugins.enabled_internal_pdf3";
589 589
590 // When first shipped, the nacl plugin will be disabled by default. When we
591 // enable it by default, we'll want to do so only once.
592 const char kPluginsEnabledNaCl[] = "plugins.enabled_nacl";
593
590 const char kPluginsShowSetReaderDefaultInfobar[] = 594 const char kPluginsShowSetReaderDefaultInfobar[] =
591 "plugins.show_set_reader_default"; 595 "plugins.show_set_reader_default";
592 596
593 // Whether about:plugins is shown in the details mode or not. 597 // Whether about:plugins is shown in the details mode or not.
594 const char kPluginsShowDetails[] = "plugins.show_details"; 598 const char kPluginsShowDetails[] = "plugins.show_details";
595 599
596 // Boolean that indicates whether outdated plugins are allowed or not. 600 // Boolean that indicates whether outdated plugins are allowed or not.
597 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; 601 const char kPluginsAllowOutdated[] = "plugins.allow_outdated";
598 602
599 // Boolean that indicates whether plugins that require authorization should 603 // Boolean that indicates whether plugins that require authorization should
(...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after
1444 // Whether user-specified handlers for protocols and content types can be 1448 // Whether user-specified handlers for protocols and content types can be
1445 // specified. 1449 // specified.
1446 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; 1450 const char kCustomHandlersEnabled[] = "custom_handlers.enabled";
1447 1451
1448 // Integers that specify the policy refresh rate for device- and user-policy in 1452 // Integers that specify the policy refresh rate for device- and user-policy in
1449 // milliseconds. Not all values are meaningful, so it is clamped to a sane range 1453 // milliseconds. Not all values are meaningful, so it is clamped to a sane range
1450 // by the cloud policy subsystem. 1454 // by the cloud policy subsystem.
1451 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; 1455 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate";
1452 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; 1456 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate";
1453 } // namespace prefs 1457 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698