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

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

Issue 11991002: Merge 176800 (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1364/src/
Patch Set: Created 7 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
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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 { 878 {
879 "app-list-show-apps-only", 879 "app-list-show-apps-only",
880 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, 880 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME,
881 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, 881 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION,
882 kOsAll, 882 kOsAll,
883 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly), 883 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly),
884 }, 884 },
885 #endif // defined(USE_ASH) 885 #endif // defined(USE_ASH)
886 #if defined(OS_CHROMEOS) 886 #if defined(OS_CHROMEOS)
887 { 887 {
888 "force-oauth1",
889 IDS_FLAGS_FORCE_OAUTH1_DISPLAY_NAME,
890 IDS_FLAGS_FORCE_OAUTH1_DISPLAY_DESCRIPTION,
891 kOsCrOS,
892 SINGLE_VALUE_TYPE(::switches::kForceOAuth1),
893 },
894 {
888 "disable-new-oobe", 895 "disable-new-oobe",
889 IDS_FLAGS_DISABLE_NEW_OOBE, 896 IDS_FLAGS_DISABLE_NEW_OOBE,
890 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, 897 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION,
891 kOsCrOS, 898 kOsCrOS,
892 SINGLE_VALUE_TYPE(switches::kDisableNewOobe), 899 SINGLE_VALUE_TYPE(switches::kDisableNewOobe),
893 }, 900 },
894 { 901 {
895 "disable-new-password-changed-dialog", 902 "disable-new-password-changed-dialog",
896 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG, 903 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG,
897 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG_DESCRIPTION, 904 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG_DESCRIPTION,
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
1602 } 1609 }
1603 1610
1604 const Experiment* GetExperiments(size_t* count) { 1611 const Experiment* GetExperiments(size_t* count) {
1605 *count = num_experiments; 1612 *count = num_experiments;
1606 return experiments; 1613 return experiments;
1607 } 1614 }
1608 1615
1609 } // namespace testing 1616 } // namespace testing
1610 1617
1611 } // namespace about_flags 1618 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/chrome_browser_main_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698