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

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

Issue 22674006: Delete the Windows 7 Geolocation provider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 7 years, 4 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 | « no previous file | content/browser/geolocation/location_arbitrator_impl.cc » ('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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 "disable-hyperlink-auditing", 587 "disable-hyperlink-auditing",
588 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, 588 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME,
589 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, 589 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION,
590 kOsAll, 590 kOsAll,
591 SINGLE_VALUE_TYPE(switches::kNoPings) 591 SINGLE_VALUE_TYPE(switches::kNoPings)
592 }, 592 },
593 { 593 {
594 "experimental-location-features", // FLAGS:RECORD_UMA 594 "experimental-location-features", // FLAGS:RECORD_UMA
595 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_NAME, 595 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_NAME,
596 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_DESCRIPTION, 596 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_DESCRIPTION,
597 kOsMac | kOsWin | kOsLinux, // Currently does nothing on CrOS. 597 kOsMac,
598 SINGLE_VALUE_TYPE(switches::kExperimentalLocationFeatures) 598 SINGLE_VALUE_TYPE(switches::kExperimentalLocationFeatures)
599 }, 599 },
600 { 600 {
601 "tab-groups-context-menu", 601 "tab-groups-context-menu",
602 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, 602 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME,
603 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, 603 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION,
604 kOsWin, 604 kOsWin,
605 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) 605 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu)
606 }, 606 },
607 { 607 {
(...skipping 1483 matching lines...) Expand 10 before | Expand all | Expand 10 after
2091 } 2091 }
2092 2092
2093 const Experiment* GetExperiments(size_t* count) { 2093 const Experiment* GetExperiments(size_t* count) {
2094 *count = num_experiments; 2094 *count = num_experiments;
2095 return experiments; 2095 return experiments;
2096 } 2096 }
2097 2097
2098 } // namespace testing 2098 } // namespace testing
2099 2099
2100 } // namespace about_flags 2100 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | content/browser/geolocation/location_arbitrator_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698