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

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: Discard accidental change in chrome/browser/prefs/browser_prefs.cc Created 5 years, 1 month 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 #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 {
11 11
12 // *************** PROFILE PREFS *************** 12 // *************** PROFILE PREFS ***************
13 // These are attached to the user profile 13 // These are attached to the user profile
14 14
15 #if defined(OS_CHROMEOS)
16 // A preference to keep list of Arc(android) applications and its state.
Luis Héctor Chávez 2015/11/12 20:49:16 Let's just call these ARC applications.
khmel1 2015/11/13 15:00:56 Done.
17 const char kArcApps[] = "arcapps";
Luis Héctor Chávez 2015/11/12 20:49:16 const char kArcAppList[] = "arc.app_list"?
khmel1 2015/11/13 15:00:56 Done.
18 #endif
15 19
16 // A bool pref that keeps whether the child status for this profile was already 20 // A bool pref that keeps whether the child status for this profile was already
17 // successfully checked via ChildAccountService. 21 // successfully checked via ChildAccountService.
18 const char kChildAccountStatusKnown[] = "child_account_status_known"; 22 const char kChildAccountStatusKnown[] = "child_account_status_known";
19 23
20 // A string property indicating whether default apps should be installed 24 // A string property indicating whether default apps should be installed
21 // in this profile. Use the value "install" to enable defaults apps, or 25 // in this profile. Use the value "install" to enable defaults apps, or
22 // "noinstall" to disable them. This property is usually set in the 26 // "noinstall" to disable them. This property is usually set in the
23 // master_preferences and copied into the profile preferences on first run. 27 // master_preferences and copied into the profile preferences on first run.
24 // Defaults apps are installed only when creating a new profile. 28 // Defaults apps are installed only when creating a new profile.
(...skipping 2163 matching lines...) Expand 10 before | Expand all | Expand 10 after
2188 // Policy that indicates how to handle animated images. 2192 // Policy that indicates how to handle animated images.
2189 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2193 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2190 #endif 2194 #endif
2191 2195
2192 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2196 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2193 2197
2194 const char kAllowDinosaurEasterEgg[] = 2198 const char kAllowDinosaurEasterEgg[] =
2195 "allow_dinosaur_easter_egg"; 2199 "allow_dinosaur_easter_egg";
2196 2200
2197 } // namespace prefs 2201 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698