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

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

Issue 11361274: Add NetworkStateListDetailedView (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 999 matching lines...) Expand 10 before | Expand all | Expand 10 after
1010 #if defined(OS_LINUX) 1010 #if defined(OS_LINUX)
1011 { "ash-enable-memory-monitor", 1011 { "ash-enable-memory-monitor",
1012 IDS_FLAGS_ENABLE_MEMORY_MONITOR_NAME, 1012 IDS_FLAGS_ENABLE_MEMORY_MONITOR_NAME,
1013 IDS_FLAGS_ENABLE_MEMORY_MONITOR_DESCRIPTION, 1013 IDS_FLAGS_ENABLE_MEMORY_MONITOR_DESCRIPTION,
1014 kOsCrOS, 1014 kOsCrOS,
1015 SINGLE_VALUE_TYPE(ash::switches::kAshEnableMemoryMonitor), 1015 SINGLE_VALUE_TYPE(ash::switches::kAshEnableMemoryMonitor),
1016 }, 1016 },
1017 #endif 1017 #endif
1018 #endif 1018 #endif
1019 #if defined(OS_CHROMEOS) 1019 #if defined(OS_CHROMEOS)
1020 { "ash-network-state-handler",
1021 IDS_FLAGS_ENABLE_NETWORK_STATE_HANDLER_NAME,
1022 IDS_FLAGS_ENABLE_NETWORK_STATE_HANDLER_DESCRIPTION,
1023 kOsCrOS,
1024 SINGLE_VALUE_TYPE(ash::switches::kAshEnableNetworkStateHandler),
1025 },
1020 { 1026 {
1021 "enable-carrier-switching", 1027 "enable-carrier-switching",
1022 IDS_FLAGS_ENABLE_CARRIER_SWITCHING, 1028 IDS_FLAGS_ENABLE_CARRIER_SWITCHING,
1023 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION, 1029 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION,
1024 kOsCrOS, 1030 kOsCrOS,
1025 SINGLE_VALUE_TYPE(switches::kEnableCarrierSwitching) 1031 SINGLE_VALUE_TYPE(switches::kEnableCarrierSwitching)
1026 }, 1032 },
1027 { 1033 {
1028 "enable-request-tablet-site", 1034 "enable-request-tablet-site",
1029 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_NAME, 1035 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_NAME,
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
1542 } 1548 }
1543 1549
1544 const Experiment* GetExperiments(size_t* count) { 1550 const Experiment* GetExperiments(size_t* count) {
1545 *count = num_experiments; 1551 *count = num_experiments;
1546 return experiments; 1552 return experiments;
1547 } 1553 }
1548 1554
1549 } // namespace testing 1555 } // namespace testing
1550 1556
1551 } // namespace about_flags 1557 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698