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

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

Issue 938713004: Add Now setting and migration logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Conditionalize include Created 5 years, 10 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
« 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) 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 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 1655 matching lines...) Expand 10 before | Expand all | Expand 10 after
1666 // Boolean that controls the enabled-state of Geolocation in content. 1666 // Boolean that controls the enabled-state of Geolocation in content.
1667 const char kGeolocationEnabled[] = "geolocation.enabled"; 1667 const char kGeolocationEnabled[] = "geolocation.enabled";
1668 #endif 1668 #endif
1669 1669
1670 #if defined(ENABLE_GOOGLE_NOW) 1670 #if defined(ENABLE_GOOGLE_NOW)
1671 // Boolean that is true when Google services can use the user's location. 1671 // Boolean that is true when Google services can use the user's location.
1672 const char kGoogleGeolocationAccessEnabled[] = 1672 const char kGoogleGeolocationAccessEnabled[] =
1673 "googlegeolocationaccess.enabled"; 1673 "googlegeolocationaccess.enabled";
1674 #endif 1674 #endif
1675 1675
1676 // Boolean that specifies whether to enable the Google Now Launcher extension.
1677 // Note: This is not the notifications component gated by ENABLE_GOOGLE_NOW.
1678 const char kGoogleNowLauncherEnabled[] = "google_now_launcher.enabled";
1679
1676 // The default audio capture device used by the Media content setting. 1680 // The default audio capture device used by the Media content setting.
1677 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; 1681 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device";
1678 1682
1679 // The default video capture device used by the Media content setting. 1683 // The default video capture device used by the Media content setting.
1680 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; 1684 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device";
1681 1685
1682 // The salt used for creating random MediaSource IDs. 1686 // The salt used for creating random MediaSource IDs.
1683 const char kMediaDeviceIdSalt[] = "media.device_id_salt"; 1687 const char kMediaDeviceIdSalt[] = "media.device_id_salt";
1684 1688
1685 // The last used printer and its settings. 1689 // The last used printer and its settings.
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
2288 // (name and a list of clients that registered the whitelist). 2292 // (name and a list of clients that registered the whitelist).
2289 const char kRegisteredSupervisedUserWhitelists[] = 2293 const char kRegisteredSupervisedUserWhitelists[] =
2290 "supervised_users.whitelists"; 2294 "supervised_users.whitelists";
2291 2295
2292 #if defined(ENABLE_EXTENSIONS) 2296 #if defined(ENABLE_EXTENSIONS)
2293 // Policy that indicates how to handle animated images. 2297 // Policy that indicates how to handle animated images.
2294 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2298 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2295 #endif 2299 #endif
2296 2300
2297 } // namespace prefs 2301 } // 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