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

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

Issue 7545018: Remove --enable-remoting flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 #endif 90 #endif
91 }, 91 },
92 { 92 {
93 "vertical-tabs", // FLAGS:RECORD_UMA 93 "vertical-tabs", // FLAGS:RECORD_UMA
94 IDS_FLAGS_SIDE_TABS_NAME, 94 IDS_FLAGS_SIDE_TABS_NAME,
95 IDS_FLAGS_SIDE_TABS_DESCRIPTION, 95 IDS_FLAGS_SIDE_TABS_DESCRIPTION,
96 kOsWin | kOsCrOS, 96 kOsWin | kOsCrOS,
97 SINGLE_VALUE_TYPE(switches::kEnableVerticalTabs) 97 SINGLE_VALUE_TYPE(switches::kEnableVerticalTabs)
98 }, 98 },
99 { 99 {
100 "remoting", // FLAGS:RECORD_UMA
101 IDS_FLAGS_REMOTING_NAME,
102 IDS_FLAGS_REMOTING_DESCRIPTION,
103 kOsAll,
104 SINGLE_VALUE_TYPE(switches::kEnableRemoting)
105 },
106 {
107 "conflicting-modules-check", // FLAGS:RECORD_UMA 100 "conflicting-modules-check", // FLAGS:RECORD_UMA
108 IDS_FLAGS_CONFLICTS_CHECK_NAME, 101 IDS_FLAGS_CONFLICTS_CHECK_NAME,
109 IDS_FLAGS_CONFLICTS_CHECK_DESCRIPTION, 102 IDS_FLAGS_CONFLICTS_CHECK_DESCRIPTION,
110 kOsWin, 103 kOsWin,
111 SINGLE_VALUE_TYPE(switches::kConflictingModulesCheck) 104 SINGLE_VALUE_TYPE(switches::kConflictingModulesCheck)
112 }, 105 },
113 { 106 {
114 "cloud-print-proxy", // FLAGS:RECORD_UMA 107 "cloud-print-proxy", // FLAGS:RECORD_UMA
115 IDS_FLAGS_CLOUD_PRINT_PROXY_NAME, 108 IDS_FLAGS_CLOUD_PRINT_PROXY_NAME,
116 IDS_FLAGS_CLOUD_PRINT_PROXY_DESCRIPTION, 109 IDS_FLAGS_CLOUD_PRINT_PROXY_DESCRIPTION,
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 } 777 }
785 778
786 const Experiment* GetExperiments(size_t* count) { 779 const Experiment* GetExperiments(size_t* count) {
787 *count = num_experiments; 780 *count = num_experiments;
788 return experiments; 781 return experiments;
789 } 782 }
790 783
791 } // namespace testing 784 } // namespace testing
792 785
793 } // namespace about_flags 786 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698