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

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

Issue 11414278: Add --enable-instant-extended-api to about:flags for all platforms (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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/ui/search/search.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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 kOsMac | kOsWin | kOsLinux, // Currently does nothing on CrOS. 494 kOsMac | kOsWin | kOsLinux, // Currently does nothing on CrOS.
495 SINGLE_VALUE_TYPE(switches::kExperimentalLocationFeatures) 495 SINGLE_VALUE_TYPE(switches::kExperimentalLocationFeatures)
496 }, 496 },
497 { 497 {
498 "tab-groups-context-menu", 498 "tab-groups-context-menu",
499 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, 499 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME,
500 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, 500 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION,
501 kOsWin, 501 kOsWin,
502 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) 502 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu)
503 }, 503 },
504 #if defined(OS_CHROMEOS)
505 { 504 {
506 "enable-instant-extended-api", 505 "enable-instant-extended-api",
507 IDS_FLAGS_ENABLE_INSTANT_EXTENDED_API, 506 IDS_FLAGS_ENABLE_INSTANT_EXTENDED_API,
508 IDS_FLAGS_ENABLE_INSTANT_EXTENDED_API_DESCRIPTION, 507 IDS_FLAGS_ENABLE_INSTANT_EXTENDED_API_DESCRIPTION,
509 kOsAll, 508 kOsAll,
510 SINGLE_VALUE_TYPE(switches::kEnableInstantExtendedAPI) 509 SINGLE_VALUE_TYPE(switches::kEnableInstantExtendedAPI)
511 }, 510 },
512 #endif
513 { 511 {
514 "static-ip-config", 512 "static-ip-config",
515 IDS_FLAGS_STATIC_IP_CONFIG_NAME, 513 IDS_FLAGS_STATIC_IP_CONFIG_NAME,
516 IDS_FLAGS_STATIC_IP_CONFIG_DESCRIPTION, 514 IDS_FLAGS_STATIC_IP_CONFIG_DESCRIPTION,
517 kOsCrOS, 515 kOsCrOS,
518 #if defined(OS_CHROMEOS) 516 #if defined(OS_CHROMEOS)
519 // This switch exists only on Chrome OS. 517 // This switch exists only on Chrome OS.
520 SINGLE_VALUE_TYPE(switches::kEnableStaticIPConfig) 518 SINGLE_VALUE_TYPE(switches::kEnableStaticIPConfig)
521 #else 519 #else
522 SINGLE_VALUE_TYPE("") 520 SINGLE_VALUE_TYPE("")
(...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after
1598 } 1596 }
1599 1597
1600 const Experiment* GetExperiments(size_t* count) { 1598 const Experiment* GetExperiments(size_t* count) {
1601 *count = num_experiments; 1599 *count = num_experiments;
1602 return experiments; 1600 return experiments;
1603 } 1601 }
1604 1602
1605 } // namespace testing 1603 } // namespace testing
1606 1604
1607 } // namespace about_flags 1605 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/search/search.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698