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

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

Issue 827733003: Removing --enable-carrier-switching command-line flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed build errors Created 5 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
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 937 matching lines...) Expand 10 before | Expand all | Expand 10 after
948 }, 948 },
949 { "ash-enable-mirrored-screen", 949 { "ash-enable-mirrored-screen",
950 IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_NAME, 950 IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_NAME,
951 IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_DESCRIPTION, 951 IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_DESCRIPTION,
952 kOsCrOS, 952 kOsCrOS,
953 SINGLE_VALUE_TYPE(ash::switches::kAshEnableMirroredScreen), 953 SINGLE_VALUE_TYPE(ash::switches::kAshEnableMirroredScreen),
954 }, 954 },
955 #endif // defined(USE_ASH) 955 #endif // defined(USE_ASH)
956 #if defined(OS_CHROMEOS) 956 #if defined(OS_CHROMEOS)
957 { 957 {
958 "enable-carrier-switching",
959 IDS_FLAGS_ENABLE_CARRIER_SWITCHING,
960 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION,
961 kOsCrOS,
962 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCarrierSwitching)
963 },
964 {
965 "enable-cloud-backup", 958 "enable-cloud-backup",
966 IDS_FLAGS_ENABLE_CLOUD_BACKUP, 959 IDS_FLAGS_ENABLE_CLOUD_BACKUP,
967 IDS_FLAGS_ENABLE_CLOUD_BACKUP_DESCRIPTION, 960 IDS_FLAGS_ENABLE_CLOUD_BACKUP_DESCRIPTION,
968 kOsCrOS, 961 kOsCrOS,
969 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCloudBackup) 962 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCloudBackup)
970 }, 963 },
971 { 964 {
972 "enable-request-tablet-site", 965 "enable-request-tablet-site",
973 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_NAME, 966 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_NAME,
974 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_DESCRIPTION, 967 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_DESCRIPTION,
(...skipping 1709 matching lines...) Expand 10 before | Expand all | Expand 10 after
2684 } 2677 }
2685 2678
2686 const Experiment* GetExperiments(size_t* count) { 2679 const Experiment* GetExperiments(size_t* count) {
2687 *count = num_experiments; 2680 *count = num_experiments;
2688 return experiments; 2681 return experiments;
2689 } 2682 }
2690 2683
2691 } // namespace testing 2684 } // namespace testing
2692 2685
2693 } // namespace about_flags 2686 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698