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

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

Issue 232183003: Revert of [Mirror Android] Temporarily remove the Mirror flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | no next file » | 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 1445 matching lines...) Expand 10 before | Expand all | Expand 10 after
1456 "enable-web-midi", 1456 "enable-web-midi",
1457 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, 1457 IDS_FLAGS_ENABLE_WEB_MIDI_NAME,
1458 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, 1458 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION,
1459 kOsMac | kOsWin | kOsLinux | kOsCrOS | kOsAndroid, 1459 kOsMac | kOsWin | kOsLinux | kOsCrOS | kOsAndroid,
1460 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) 1460 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI)
1461 }, 1461 },
1462 { 1462 {
1463 "enable-new-profile-management", 1463 "enable-new-profile-management",
1464 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, 1464 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME,
1465 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, 1465 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION,
1466 kOsMac | kOsWin | kOsLinux, 1466 kOsAndroid | kOsMac | kOsWin | kOsLinux,
1467 SINGLE_VALUE_TYPE(switches::kNewProfileManagement) 1467 SINGLE_VALUE_TYPE(switches::kNewProfileManagement)
1468 }, 1468 },
1469 { 1469 {
1470 "enable-fast-user-switching", 1470 "enable-fast-user-switching",
1471 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME, 1471 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME,
1472 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION, 1472 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION,
1473 kOsMac | kOsWin | kOsLinux, 1473 kOsMac | kOsWin | kOsLinux,
1474 SINGLE_VALUE_TYPE(switches::kFastUserSwitching) 1474 SINGLE_VALUE_TYPE(switches::kFastUserSwitching)
1475 }, 1475 },
1476 { 1476 {
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after
2335 } 2335 }
2336 2336
2337 const Experiment* GetExperiments(size_t* count) { 2337 const Experiment* GetExperiments(size_t* count) {
2338 *count = num_experiments; 2338 *count = num_experiments;
2339 return experiments; 2339 return experiments;
2340 } 2340 }
2341 2341
2342 } // namespace testing 2342 } // namespace testing
2343 2343
2344 } // namespace about_flags 2344 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698