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 2444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2455 // Local state caching knowledge of whether the app launcher is installed. | 2455 // Local state caching knowledge of whether the app launcher is installed. |
2456 const char kAppLauncherIsEnabled[] = | 2456 const char kAppLauncherIsEnabled[] = |
2457 "apps.app_launcher.should_show_apps_page"; | 2457 "apps.app_launcher.should_show_apps_page"; |
2458 | 2458 |
2459 // Integer representing the version of the app launcher shortcut installed on | 2459 // Integer representing the version of the app launcher shortcut installed on |
2460 // the system. Incremented, e.g., when embedded icons change. | 2460 // the system. Incremented, e.g., when embedded icons change. |
2461 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; | 2461 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; |
2462 | 2462 |
2463 // A boolean identifying if we should show the app launcher promo or not. | 2463 // A boolean identifying if we should show the app launcher promo or not. |
2464 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; | 2464 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; |
| 2465 |
| 2466 // A dictionary that tracks the Drive app to Chrome app mapping. The key is |
| 2467 // a Drive app id and the value is the corresponding Chrome app id. The pref |
| 2468 // is unsynable and used to track local mappings only. |
| 2469 const char kAppLauncherDriveAppMapping[] = |
| 2470 "apps.app_launcher.drive_app_mapping"; |
2465 #endif | 2471 #endif |
2466 | 2472 |
2467 // If set, the user requested to launch the app with this extension id while | 2473 // If set, the user requested to launch the app with this extension id while |
2468 // in Metro mode, and then relaunched to Desktop mode to start it. | 2474 // in Metro mode, and then relaunched to Desktop mode to start it. |
2469 const char kAppLaunchForMetroRestart[] = "apps.app_launch_for_metro_restart"; | 2475 const char kAppLaunchForMetroRestart[] = "apps.app_launch_for_metro_restart"; |
2470 | 2476 |
2471 // Set with |kAppLaunchForMetroRestart|, the profile whose loading triggers | 2477 // Set with |kAppLaunchForMetroRestart|, the profile whose loading triggers |
2472 // launch of the specified app when restarting Chrome in desktop mode. | 2478 // launch of the specified app when restarting Chrome in desktop mode. |
2473 const char kAppLaunchForMetroRestartProfile[] = | 2479 const char kAppLaunchForMetroRestartProfile[] = |
2474 "apps.app_launch_for_metro_restart_profile"; | 2480 "apps.app_launch_for_metro_restart_profile"; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2510 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2516 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2511 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2517 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2512 // title or an empty string if the bookmark node was removed. | 2518 // title or an empty string if the bookmark node was removed. |
2513 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2519 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2514 #endif | 2520 #endif |
2515 | 2521 |
2516 // Whether DNS Quick Check is disabled in proxy resolution. | 2522 // Whether DNS Quick Check is disabled in proxy resolution. |
2517 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2523 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2518 | 2524 |
2519 } // namespace prefs | 2525 } // namespace prefs |
OLD | NEW |