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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 129703002: about:flags: disable-app-launcher is now reset-app-list-install-state. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1692 matching lines...) Expand 10 before | Expand all | Expand 10 after
1703 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) 1703 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin)
1704 }, 1704 },
1705 { 1705 {
1706 "enable-google-profile-info", 1706 "enable-google-profile-info",
1707 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, 1707 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME,
1708 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, 1708 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION,
1709 kOsMac | kOsWin | kOsLinux, 1709 kOsMac | kOsWin | kOsLinux,
1710 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo) 1710 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)
1711 }, 1711 },
1712 { 1712 {
1713 "disable-app-launcher", 1713 "reset-app-list-install-state",
1714 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, 1714 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME,
1715 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, 1715 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION,
1716 kOsMac | kOsWin, 1716 kOsMac | kOsWin,
1717 SINGLE_VALUE_TYPE(switches::kResetAppListInstallState) 1717 SINGLE_VALUE_TYPE(switches::kResetAppListInstallState)
1718 }, 1718 },
1719 #if defined(ENABLE_APP_LIST) 1719 #if defined(ENABLE_APP_LIST)
1720 { 1720 {
1721 "enable-app-launcher-start-page", 1721 "enable-app-launcher-start-page",
1722 IDS_FLAGS_ENABLE_APP_LIST_START_PAGE_NAME, 1722 IDS_FLAGS_ENABLE_APP_LIST_START_PAGE_NAME,
1723 IDS_FLAGS_ENABLE_APP_LIST_START_PAGE_DESCRIPTION, 1723 IDS_FLAGS_ENABLE_APP_LIST_START_PAGE_DESCRIPTION,
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
2462 } 2462 }
2463 2463
2464 const Experiment* GetExperiments(size_t* count) { 2464 const Experiment* GetExperiments(size_t* count) {
2465 *count = num_experiments; 2465 *count = num_experiments;
2466 return experiments; 2466 return experiments;
2467 } 2467 }
2468 2468
2469 } // namespace testing 2469 } // namespace testing
2470 2470
2471 } // namespace about_flags 2471 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698