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

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

Issue 10692168: Moved ExternalExtensionLoaders/Providers into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 // of web pages. 472 // of web pages.
473 // NOTE: The "dns_prefetching.enabled" value is used so that historical user 473 // NOTE: The "dns_prefetching.enabled" value is used so that historical user
474 // preferences are not lost. 474 // preferences are not lost.
475 const char kNetworkPredictionEnabled[] = "dns_prefetching.enabled"; 475 const char kNetworkPredictionEnabled[] = "dns_prefetching.enabled";
476 476
477 // An integer representing the state of the default apps installation process. 477 // An integer representing the state of the default apps installation process.
478 // This value is persisted in the profile's user preferences because the process 478 // This value is persisted in the profile's user preferences because the process
479 // is async, and the user may have stopped chrome in the middle. The next time 479 // is async, and the user may have stopped chrome in the middle. The next time
480 // the profile is opened, the process will continue from where it left off. 480 // the profile is opened, the process will continue from where it left off.
481 // 481 //
482 // See possible values in external_extension_provider_impl.cc. 482 // See possible values in external_provider_impl.cc.
483 const char kDefaultAppsInstallState[] = "default_apps_install_state"; 483 const char kDefaultAppsInstallState[] = "default_apps_install_state";
484 484
485 #if defined(OS_CHROMEOS) 485 #if defined(OS_CHROMEOS)
486 // An integer pref to initially mute volume if 1. 486 // An integer pref to initially mute volume if 1.
487 const char kAudioMute[] = "settings.audio.mute"; 487 const char kAudioMute[] = "settings.audio.mute";
488 488
489 // TODO(derat): This is deprecated in favor of |kAudioVolumePercent|; remove it 489 // TODO(derat): This is deprecated in favor of |kAudioVolumePercent|; remove it
490 // after R20 once we've cleared old user settings: http://crbug.com/112039 490 // after R20 once we've cleared old user settings: http://crbug.com/112039
491 const char kAudioVolumeDb[] = "settings.audio.volume"; 491 const char kAudioVolumeDb[] = "settings.audio.volume";
492 492
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after
1394 const char kExtensionInstallDenyList[] = "extensions.install.denylist"; 1394 const char kExtensionInstallDenyList[] = "extensions.install.denylist";
1395 1395
1396 // Whether we have run the extension-alert system (see ExtensionGlobalError) 1396 // Whether we have run the extension-alert system (see ExtensionGlobalError)
1397 // at least once for this profile. 1397 // at least once for this profile.
1398 const char kExtensionAlertsInitializedPref[] = "extensions.alerts.initialized"; 1398 const char kExtensionAlertsInitializedPref[] = "extensions.alerts.initialized";
1399 1399
1400 // A list containing extensions that Chrome will silently install 1400 // A list containing extensions that Chrome will silently install
1401 // at startup time. It is a list of strings, each string contains 1401 // at startup time. It is a list of strings, each string contains
1402 // an extension ID and an update URL, delimited by a semicolon. 1402 // an extension ID and an update URL, delimited by a semicolon.
1403 // This preference is set by an admin policy, and meant to be only 1403 // This preference is set by an admin policy, and meant to be only
1404 // accessed through ExternalPolicyExtensionProvider. 1404 // accessed through extensions::ExternalPolicyProvider.
1405 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; 1405 const char kExtensionInstallForceList[] = "extensions.install.forcelist";
1406 1406
1407 // Time of the last, and next scheduled, extensions auto-update checks. 1407 // Time of the last, and next scheduled, extensions auto-update checks.
1408 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; 1408 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check";
1409 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; 1409 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check";
1410 // Version number of last blacklist check 1410 // Version number of last blacklist check
1411 const char kExtensionBlacklistUpdateVersion[] = 1411 const char kExtensionBlacklistUpdateVersion[] =
1412 "extensions.blacklistupdate.version"; 1412 "extensions.blacklistupdate.version";
1413 1413
1414 // Keeps track of which sessions are collapsed in the Other Devices menu. 1414 // Keeps track of which sessions are collapsed in the Other Devices menu.
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
1973 const char kNetworkProfileLastWarningTime[] = 1973 const char kNetworkProfileLastWarningTime[] =
1974 "network_profile.last_warning_time"; 1974 "network_profile.last_warning_time";
1975 1975
1976 #if defined(OS_MACOSX) 1976 #if defined(OS_MACOSX)
1977 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. 1977 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5.
1978 const char kMacLeopardObsoleteInfobarLastShown[] = 1978 const char kMacLeopardObsoleteInfobarLastShown[] =
1979 "mac_105_obsolete_infobar_last_shown"; 1979 "mac_105_obsolete_infobar_last_shown";
1980 #endif // defined(OS_MACOSX) 1980 #endif // defined(OS_MACOSX)
1981 1981
1982 } // namespace prefs 1982 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698