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

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

Issue 1227973003: Componentize //chrome/browser/prefs/tracked. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | components/BUILD.gn » ('j') | 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 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after
1154 // Boolean pref that determines whether the user can enter fullscreen mode. 1154 // Boolean pref that determines whether the user can enter fullscreen mode.
1155 // Disabling fullscreen mode also makes kiosk mode unavailable on desktop 1155 // Disabling fullscreen mode also makes kiosk mode unavailable on desktop
1156 // platforms. 1156 // platforms.
1157 const char kFullscreenAllowed[] = "fullscreen.allowed"; 1157 const char kFullscreenAllowed[] = "fullscreen.allowed";
1158 1158
1159 // Enable notifications for new devices on the local network that can be 1159 // Enable notifications for new devices on the local network that can be
1160 // registered to the user's account, e.g. Google Cloud Print printers. 1160 // registered to the user's account, e.g. Google Cloud Print printers.
1161 const char kLocalDiscoveryNotificationsEnabled[] = 1161 const char kLocalDiscoveryNotificationsEnabled[] =
1162 "local_discovery.notifications_enabled"; 1162 "local_discovery.notifications_enabled";
1163 1163
1164 // A timestamp (stored in base::Time::ToInternalValue format) of the last time
1165 // a preference was reset.
1166 const char kPreferenceResetTime[] = "prefs.preference_reset_time";
1167
1168 // How many Service Workers are registered with the Push API (could be zero). 1164 // How many Service Workers are registered with the Push API (could be zero).
1169 const char kPushMessagingRegistrationCount[] = 1165 const char kPushMessagingRegistrationCount[] =
1170 "gcm.push_messaging_registration_count"; 1166 "gcm.push_messaging_registration_count";
1171 1167
1172 // Maps from app ids to origin + Service Worker registration ID. 1168 // Maps from app ids to origin + Service Worker registration ID.
1173 const char kPushMessagingAppIdentifierMap[] = 1169 const char kPushMessagingAppIdentifierMap[] =
1174 "gcm.push_messaging_application_id_map"; 1170 "gcm.push_messaging_application_id_map";
1175 1171
1176 // Whether a user is allowed to use Easy Unlock. 1172 // Whether a user is allowed to use Easy Unlock.
1177 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; 1173 const char kEasyUnlockAllowed[] = "easy_unlock.allowed";
(...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after
2255 "supervised_users.whitelists"; 2251 "supervised_users.whitelists";
2256 2252
2257 #if defined(ENABLE_EXTENSIONS) 2253 #if defined(ENABLE_EXTENSIONS)
2258 // Policy that indicates how to handle animated images. 2254 // Policy that indicates how to handle animated images.
2259 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2255 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2260 #endif 2256 #endif
2261 2257
2262 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2258 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2263 2259
2264 } // namespace prefs 2260 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | components/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698