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

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

Issue 873103002: Removed unused native code related to wifi bootstrapping. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sun 01/25/2015 21:44:58.31 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
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 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after
1344 #if defined(ENABLE_SERVICE_DISCOVERY) 1344 #if defined(ENABLE_SERVICE_DISCOVERY)
1345 { 1345 {
1346 "device-discovery-notifications", 1346 "device-discovery-notifications",
1347 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_NAME, 1347 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_NAME,
1348 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_DESCRIPTION, 1348 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_DESCRIPTION,
1349 kOsDesktop, 1349 kOsDesktop,
1350 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableDeviceDiscoveryNotifications, 1350 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableDeviceDiscoveryNotifications,
1351 switches::kDisableDeviceDiscoveryNotifications) 1351 switches::kDisableDeviceDiscoveryNotifications)
1352 }, 1352 },
1353 { 1353 {
1354 "enable-cloud-devices",
1355 IDS_FLAGS_ENABLE_CLOUD_DEVICES_NAME,
1356 IDS_FLAGS_ENABLE_CLOUD_DEVICES_DESCRIPTION,
1357 kOsDesktop,
1358 SINGLE_VALUE_TYPE(switches::kEnableCloudDevices)
1359 },
1360 {
1361 "enable-print-preview-register-promos", 1354 "enable-print-preview-register-promos",
1362 IDS_FLAGS_ENABLE_PRINT_PREVIEW_REGISTER_PROMOS_NAME, 1355 IDS_FLAGS_ENABLE_PRINT_PREVIEW_REGISTER_PROMOS_NAME,
1363 IDS_FLAGS_ENABLE_PRINT_PREVIEW_REGISTER_PROMOS_DESCRIPTION, 1356 IDS_FLAGS_ENABLE_PRINT_PREVIEW_REGISTER_PROMOS_DESCRIPTION,
1364 kOsDesktop, 1357 kOsDesktop,
1365 SINGLE_VALUE_TYPE(switches::kEnablePrintPreviewRegisterPromos) 1358 SINGLE_VALUE_TYPE(switches::kEnablePrintPreviewRegisterPromos)
1366 }, 1359 },
1367 #endif // ENABLE_SERVICE_DISCOVERY 1360 #endif // ENABLE_SERVICE_DISCOVERY
1368 #if defined(OS_WIN) 1361 #if defined(OS_WIN)
1369 { 1362 {
1370 "enable-cloud-print-xps", 1363 "enable-cloud-print-xps",
(...skipping 1358 matching lines...) Expand 10 before | Expand all | Expand 10 after
2729 } 2722 }
2730 2723
2731 const Experiment* GetExperiments(size_t* count) { 2724 const Experiment* GetExperiments(size_t* count) {
2732 *count = num_experiments; 2725 *count = num_experiments;
2733 return experiments; 2726 return experiments;
2734 } 2727 }
2735 2728
2736 } // namespace testing 2729 } // namespace testing
2737 2730
2738 } // namespace about_flags 2731 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/local_discovery/privetv3_crypto_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698