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

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

Issue 130803011: [Android] Add --enable-new-profile-management to about flags (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | 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 1668 matching lines...) Expand 10 before | Expand all | Expand 10 after
1679 "enable-web-midi", 1679 "enable-web-midi",
1680 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, 1680 IDS_FLAGS_ENABLE_WEB_MIDI_NAME,
1681 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, 1681 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION,
1682 kOsMac | kOsWin | kOsLinux | kOsCrOS | kOsAndroid, 1682 kOsMac | kOsWin | kOsLinux | kOsCrOS | kOsAndroid,
1683 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) 1683 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI)
1684 }, 1684 },
1685 { 1685 {
1686 "enable-new-profile-management", 1686 "enable-new-profile-management",
1687 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, 1687 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME,
1688 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, 1688 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION,
1689 kOsMac | kOsWin | kOsLinux, 1689 kOsAndroid | kOsMac | kOsWin | kOsLinux,
1690 SINGLE_VALUE_TYPE(switches::kNewProfileManagement) 1690 SINGLE_VALUE_TYPE(switches::kNewProfileManagement)
1691 }, 1691 },
1692 { 1692 {
1693 "enable-web-based-signin", 1693 "enable-web-based-signin",
1694 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME, 1694 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME,
1695 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION, 1695 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION,
1696 kOsMac | kOsWin | kOsLinux, 1696 kOsMac | kOsWin | kOsLinux,
1697 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) 1697 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin)
1698 }, 1698 },
1699 { 1699 {
(...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
2498 } 2498 }
2499 2499
2500 const Experiment* GetExperiments(size_t* count) { 2500 const Experiment* GetExperiments(size_t* count) {
2501 *count = num_experiments; 2501 *count = num_experiments;
2502 return experiments; 2502 return experiments;
2503 } 2503 }
2504 2504
2505 } // namespace testing 2505 } // namespace testing
2506 2506
2507 } // namespace about_flags 2507 } // 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