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

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

Issue 901233003: Enable Cloud Import feature by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update device handler test to use new flag. Created 5 years, 10 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chromeos/chromeos_switches.h » ('j') | 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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 #endif // defined(USE_ASH) 976 #endif // defined(USE_ASH)
977 #if defined(OS_CHROMEOS) 977 #if defined(OS_CHROMEOS)
978 { 978 {
979 "enable-carrier-switching", 979 "enable-carrier-switching",
980 IDS_FLAGS_ENABLE_CARRIER_SWITCHING, 980 IDS_FLAGS_ENABLE_CARRIER_SWITCHING,
981 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION, 981 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION,
982 kOsCrOS, 982 kOsCrOS,
983 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCarrierSwitching) 983 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCarrierSwitching)
984 }, 984 },
985 { 985 {
986 "enable-cloud-backup", 986 "disable-cloud-import",
987 IDS_FLAGS_ENABLE_CLOUD_BACKUP, 987 IDS_FLAGS_DISABLE_CLOUD_IMPORT,
988 IDS_FLAGS_ENABLE_CLOUD_BACKUP_DESCRIPTION, 988 IDS_FLAGS_DISABLE_CLOUD_IMPORT_DESCRIPTION,
989 kOsCrOS, 989 kOsCrOS,
990 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCloudBackup) 990 SINGLE_VALUE_TYPE(chromeos::switches::kDisableCloudImport)
991 }, 991 },
992 { 992 {
993 "enable-request-tablet-site", 993 "enable-request-tablet-site",
994 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_NAME, 994 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_NAME,
995 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_DESCRIPTION, 995 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_DESCRIPTION,
996 kOsCrOS, 996 kOsCrOS,
997 SINGLE_VALUE_TYPE(chromeos::switches::kEnableRequestTabletSite) 997 SINGLE_VALUE_TYPE(chromeos::switches::kEnableRequestTabletSite)
998 }, 998 },
999 #endif 999 #endif
1000 { 1000 {
(...skipping 1745 matching lines...) Expand 10 before | Expand all | Expand 10 after
2746 } 2746 }
2747 2747
2748 const Experiment* GetExperiments(size_t* count) { 2748 const Experiment* GetExperiments(size_t* count) {
2749 *count = num_experiments; 2749 *count = num_experiments;
2750 return experiments; 2750 return experiments;
2751 } 2751 }
2752 2752
2753 } // namespace testing 2753 } // namespace testing
2754 2754
2755 } // namespace about_flags 2755 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chromeos/chromeos_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698