OLD | NEW |
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/macros.h" | 7 #include "base/macros.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
10 | 10 |
(...skipping 1977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1988 | 1988 |
1989 // The next media gallery ID to assign. | 1989 // The next media gallery ID to assign. |
1990 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; | 1990 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; |
1991 | 1991 |
1992 // A list of dictionaries, where each dictionary represents a known media | 1992 // A list of dictionaries, where each dictionary represents a known media |
1993 // gallery. | 1993 // gallery. |
1994 const char kMediaGalleriesRememberedGalleries[] = | 1994 const char kMediaGalleriesRememberedGalleries[] = |
1995 "media_galleries.remembered_galleries"; | 1995 "media_galleries.remembered_galleries"; |
1996 #endif // !defined(OS_ANDROID) | 1996 #endif // !defined(OS_ANDROID) |
1997 | 1997 |
1998 #if defined(USE_ASH) | 1998 #if defined(USE_AURA) |
1999 // |kShelfAlignment| and |kShelfAutoHideBehavior| have a local variant. The | 1999 // |kShelfAlignment| and |kShelfAutoHideBehavior| have a local variant. The |
2000 // local variant is not synced and is used if set. If the local variant is not | 2000 // local variant is not synced and is used if set. If the local variant is not |
2001 // set its value is set from the synced value (once prefs have been | 2001 // set its value is set from the synced value (once prefs have been |
2002 // synced). This gives a per-machine setting that is initialized from the last | 2002 // synced). This gives a per-machine setting that is initialized from the last |
2003 // set value. | 2003 // set value. |
2004 // These values are default on the machine but can be overridden by per-display | 2004 // These values are default on the machine but can be overridden by per-display |
2005 // values in kShelfPreferences (unless overridden by managed policy). | 2005 // values in kShelfPreferences (unless overridden by managed policy). |
2006 // String value corresponding to ash::Shell::ShelfAlignment. | 2006 // String value corresponding to ash::Shell::ShelfAlignment. |
2007 const char kShelfAlignment[] = "shelf_alignment"; | 2007 const char kShelfAlignment[] = "shelf_alignment"; |
2008 const char kShelfAlignmentLocal[] = "shelf_alignment_local"; | 2008 const char kShelfAlignmentLocal[] = "shelf_alignment_local"; |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2199 const char kMediaRouterEnableCloudServices[] = | 2199 const char kMediaRouterEnableCloudServices[] = |
2200 "media_router.cloudservices.enabled"; | 2200 "media_router.cloudservices.enabled"; |
2201 #endif // defined(GOOGLE_CHROME_BUILD) | 2201 #endif // defined(GOOGLE_CHROME_BUILD) |
2202 // Whether or not the Media Router first run flow has been acknowledged by the | 2202 // Whether or not the Media Router first run flow has been acknowledged by the |
2203 // user. | 2203 // user. |
2204 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2204 const char kMediaRouterFirstRunFlowAcknowledged[] = |
2205 "media_router.firstrunflow.acknowledged"; | 2205 "media_router.firstrunflow.acknowledged"; |
2206 #endif | 2206 #endif |
2207 | 2207 |
2208 } // namespace prefs | 2208 } // namespace prefs |
OLD | NEW |