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

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

Issue 251853003: [OriginChip] Enable the origin chip chrome:flags on Linux. (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 1623 matching lines...) Expand 10 before | Expand all | Expand 10 after
1634 "num-raster-threads", 1634 "num-raster-threads",
1635 IDS_FLAGS_NUM_RASTER_THREADS_NAME, 1635 IDS_FLAGS_NUM_RASTER_THREADS_NAME,
1636 IDS_FLAGS_NUM_RASTER_THREADS_DESCRIPTION, 1636 IDS_FLAGS_NUM_RASTER_THREADS_DESCRIPTION,
1637 kOsAll, 1637 kOsAll,
1638 MULTI_VALUE_TYPE(kNumRasterThreadsChoices) 1638 MULTI_VALUE_TYPE(kNumRasterThreadsChoices)
1639 }, 1639 },
1640 { 1640 {
1641 "origin-chip", 1641 "origin-chip",
1642 IDS_FLAGS_ORIGIN_CHIP_NAME, 1642 IDS_FLAGS_ORIGIN_CHIP_NAME,
1643 IDS_FLAGS_ORIGIN_CHIP_DESCRIPTION, 1643 IDS_FLAGS_ORIGIN_CHIP_DESCRIPTION,
1644 kOsCrOS | kOsWin, 1644 kOsCrOS | kOsWin | kOsLinux,
1645 MULTI_VALUE_TYPE(kOriginChipChoices) 1645 MULTI_VALUE_TYPE(kOriginChipChoices)
1646 }, 1646 },
1647 { 1647 {
1648 "origin-chip-in-omnibox", 1648 "origin-chip-in-omnibox",
1649 IDS_FLAGS_ORIGIN_CHIP_V2_NAME, 1649 IDS_FLAGS_ORIGIN_CHIP_V2_NAME,
1650 IDS_FLAGS_ORIGIN_CHIP_V2_DESCRIPTION, 1650 IDS_FLAGS_ORIGIN_CHIP_V2_DESCRIPTION,
1651 kOsCrOS | kOsMac | kOsWin, 1651 kOsCrOS | kOsMac | kOsWin | kOsLinux,
1652 MULTI_VALUE_TYPE(kOriginChipV2Choices) 1652 MULTI_VALUE_TYPE(kOriginChipV2Choices)
1653 }, 1653 },
1654 { 1654 {
1655 "search-button-in-omnibox", 1655 "search-button-in-omnibox",
1656 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_NAME, 1656 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_NAME,
1657 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_DESCRIPTION, 1657 IDS_FLAGS_SEARCH_BUTTON_IN_OMNIBOX_DESCRIPTION,
1658 kOsCrOS | kOsMac | kOsWin, 1658 kOsCrOS | kOsMac | kOsWin,
1659 MULTI_VALUE_TYPE(kSearchButtonInOmniboxChoices) 1659 MULTI_VALUE_TYPE(kSearchButtonInOmniboxChoices)
1660 }, 1660 },
1661 { 1661 {
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
2306 } 2306 }
2307 2307
2308 const Experiment* GetExperiments(size_t* count) { 2308 const Experiment* GetExperiments(size_t* count) {
2309 *count = num_experiments; 2309 *count = num_experiments;
2310 return experiments; 2310 return experiments;
2311 } 2311 }
2312 2312
2313 } // namespace testing 2313 } // namespace testing
2314 2314
2315 } // namespace about_flags 2315 } // 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