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/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 2493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2504 const char kRLZBrand[] = "rlz.brand"; | 2504 const char kRLZBrand[] = "rlz.brand"; |
2505 // Whether RLZ pings are disabled. | 2505 // Whether RLZ pings are disabled. |
2506 const char kRLZDisabled[] = "rlz.disabled"; | 2506 const char kRLZDisabled[] = "rlz.disabled"; |
2507 #endif | 2507 #endif |
2508 | 2508 |
2509 #if defined(ENABLE_APP_LIST) | 2509 #if defined(ENABLE_APP_LIST) |
2510 // The directory in user data dir that contains the profile to be used with the | 2510 // The directory in user data dir that contains the profile to be used with the |
2511 // app launcher. | 2511 // app launcher. |
2512 const char kAppListProfile[] = "app_list.profile"; | 2512 const char kAppListProfile[] = "app_list.profile"; |
2513 | 2513 |
2514 // Whether to show the app list on a browser relaunch. Used when switching out | |
2515 // of metro mode after a user gesture requests showing the app list. | |
2516 const char kRestartWithAppList[] = "app_list.show_on_relaunch"; | |
2517 | |
2518 // The number of times the app launcher was launched since last ping and | 2514 // The number of times the app launcher was launched since last ping and |
2519 // the time of the last ping. | 2515 // the time of the last ping. |
2520 const char kAppListLaunchCount[] = "app_list.launch_count"; | 2516 const char kAppListLaunchCount[] = "app_list.launch_count"; |
2521 const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; | 2517 const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; |
2522 | 2518 |
2523 // The number of times the an app was launched from the app launcher since last | 2519 // The number of times the an app was launched from the app launcher since last |
2524 // ping and the time of the last ping. | 2520 // ping and the time of the last ping. |
2525 const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2521 const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
2526 const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2522 const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
2527 | 2523 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2596 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2592 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2597 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2593 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2598 // title or an empty string if the bookmark node was removed. | 2594 // title or an empty string if the bookmark node was removed. |
2599 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2595 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2600 #endif | 2596 #endif |
2601 | 2597 |
2602 // Whether DNS Quick Check is disabled in proxy resolution. | 2598 // Whether DNS Quick Check is disabled in proxy resolution. |
2603 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2599 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2604 | 2600 |
2605 } // namespace prefs | 2601 } // namespace prefs |
OLD | NEW |