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

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

Issue 1413153007: arc-app-launcher: Minimal support for ARC app launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added missing links to BUILD.gn Created 5 years 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') | chrome/test/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/features.h" 8 #include "chrome/common/features.h"
9 #include "chrome/common/pref_font_webkit_names.h" 9 #include "chrome/common/pref_font_webkit_names.h"
10 10
11 namespace prefs { 11 namespace prefs {
12 12
13 // *************** PROFILE PREFS *************** 13 // *************** PROFILE PREFS ***************
14 // These are attached to the user profile 14 // These are attached to the user profile
15 15
16 #if defined(OS_CHROMEOS) && defined(ENABLE_APP_LIST)
17 // A preference to keep list of ARC apps and its state.
18 const char kArcApps[] = "arc.apps";
19 #endif
16 20
17 // A bool pref that keeps whether the child status for this profile was already 21 // A bool pref that keeps whether the child status for this profile was already
18 // successfully checked via ChildAccountService. 22 // successfully checked via ChildAccountService.
19 const char kChildAccountStatusKnown[] = "child_account_status_known"; 23 const char kChildAccountStatusKnown[] = "child_account_status_known";
20 24
21 // A string property indicating whether default apps should be installed 25 // A string property indicating whether default apps should be installed
22 // in this profile. Use the value "install" to enable defaults apps, or 26 // in this profile. Use the value "install" to enable defaults apps, or
23 // "noinstall" to disable them. This property is usually set in the 27 // "noinstall" to disable them. This property is usually set in the
24 // master_preferences and copied into the profile preferences on first run. 28 // master_preferences and copied into the profile preferences on first run.
25 // Defaults apps are installed only when creating a new profile. 29 // Defaults apps are installed only when creating a new profile.
(...skipping 2136 matching lines...) Expand 10 before | Expand all | Expand 10 after
2162 // Policy that indicates how to handle animated images. 2166 // Policy that indicates how to handle animated images.
2163 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2167 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2164 #endif 2168 #endif
2165 2169
2166 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2170 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2167 2171
2168 const char kAllowDinosaurEasterEgg[] = 2172 const char kAllowDinosaurEasterEgg[] =
2169 "allow_dinosaur_easter_egg"; 2173 "allow_dinosaur_easter_egg";
2170 2174
2171 } // namespace prefs 2175 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698