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

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

Issue 308003005: app_list: Drive app integration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, fix nits Created 6 years, 6 months 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 | Annotate | Revision Log
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 {
(...skipping 2319 matching lines...) Expand 10 before | Expand all | Expand 10 after
2330 // Local state caching knowledge of whether the app launcher is installed. 2330 // Local state caching knowledge of whether the app launcher is installed.
2331 const char kAppLauncherIsEnabled[] = 2331 const char kAppLauncherIsEnabled[] =
2332 "apps.app_launcher.should_show_apps_page"; 2332 "apps.app_launcher.should_show_apps_page";
2333 2333
2334 // Integer representing the version of the app launcher shortcut installed on 2334 // Integer representing the version of the app launcher shortcut installed on
2335 // the system. Incremented, e.g., when embedded icons change. 2335 // the system. Incremented, e.g., when embedded icons change.
2336 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version"; 2336 const char kAppLauncherShortcutVersion[] = "apps.app_launcher.shortcut_version";
2337 2337
2338 // A boolean identifying if we should show the app launcher promo or not. 2338 // A boolean identifying if we should show the app launcher promo or not.
2339 const char kShowAppLauncherPromo[] = "app_launcher.show_promo"; 2339 const char kShowAppLauncherPromo[] = "app_launcher.show_promo";
2340
2341 // A dictionary that tracks the Drive app to Chrome app mapping. The key is
2342 // a Drive app id and the value is the corresponding Chrome app id. The pref
2343 // is unsynable and used to track local mappings only.
2344 const char kAppLauncherDriveAppMapping[] =
2345 "apps.app_launcher.drive_app_mapping";
2340 #endif 2346 #endif
2341 2347
2342 // If set, the user requested to launch the app with this extension id while 2348 // If set, the user requested to launch the app with this extension id while
2343 // in Metro mode, and then relaunched to Desktop mode to start it. 2349 // in Metro mode, and then relaunched to Desktop mode to start it.
2344 const char kAppLaunchForMetroRestart[] = "apps.app_launch_for_metro_restart"; 2350 const char kAppLaunchForMetroRestart[] = "apps.app_launch_for_metro_restart";
2345 2351
2346 // Set with |kAppLaunchForMetroRestart|, the profile whose loading triggers 2352 // Set with |kAppLaunchForMetroRestart|, the profile whose loading triggers
2347 // launch of the specified app when restarting Chrome in desktop mode. 2353 // launch of the specified app when restarting Chrome in desktop mode.
2348 const char kAppLaunchForMetroRestartProfile[] = 2354 const char kAppLaunchForMetroRestartProfile[] =
2349 "apps.app_launch_for_metro_restart_profile"; 2355 "apps.app_launch_for_metro_restart_profile";
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
2381 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2387 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2382 // given by the PartnerBookmarksProvider and either the user-visible renamed 2388 // given by the PartnerBookmarksProvider and either the user-visible renamed
2383 // title or an empty string if the bookmark node was removed. 2389 // title or an empty string if the bookmark node was removed.
2384 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2390 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2385 #endif 2391 #endif
2386 2392
2387 // Whether DNS Quick Check is disabled in proxy resolution. 2393 // Whether DNS Quick Check is disabled in proxy resolution.
2388 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2394 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2389 2395
2390 } // namespace prefs 2396 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698