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

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

Issue 11578044: Enable Search-key modifiers for extended key shortcuts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nit 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 | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/login/login_utils.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 925 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 SINGLE_VALUE_TYPE(ash::switches::kAshNewLockAnimationsEnabled), 936 SINGLE_VALUE_TYPE(ash::switches::kAshNewLockAnimationsEnabled),
937 }, 937 },
938 { 938 {
939 "file-manager-packaged", 939 "file-manager-packaged",
940 IDS_FLAGS_FILE_MANAGER_PACKAGED_NAME, 940 IDS_FLAGS_FILE_MANAGER_PACKAGED_NAME,
941 IDS_FLAGS_FILE_MANAGER_PACKAGED_DESCRIPTION, 941 IDS_FLAGS_FILE_MANAGER_PACKAGED_DESCRIPTION,
942 kOsCrOS, 942 kOsCrOS,
943 SINGLE_VALUE_TYPE(switches::kFileManagerPackaged), 943 SINGLE_VALUE_TYPE(switches::kFileManagerPackaged),
944 }, 944 },
945 { 945 {
946 "enable-chromebook-function-key",
947 IDS_FLAGS_ENABLE_CHROMEBOOK_FUNCTION_KEY_NAME,
948 IDS_FLAGS_ENABLE_CHROMEBOOK_FUNCTION_KEY_DESCRIPTION,
949 kOsCrOS,
950 SINGLE_VALUE_TYPE(switches::kEnableChromebookFunctionKey),
951 },
952 {
953 "enable-launcher-per-display", 946 "enable-launcher-per-display",
954 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_NAME, 947 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_NAME,
955 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_DESCRIPTION, 948 IDS_FLAGS_ENABLE_LAUNCHER_PER_DISPLAY_DESCRIPTION,
956 kOsCrOS, 949 kOsCrOS,
957 SINGLE_VALUE_TYPE(ash::switches::kAshLauncherPerDisplay), 950 SINGLE_VALUE_TYPE(ash::switches::kAshLauncherPerDisplay),
958 }, 951 },
959 #endif // defined(OS_CHROMEOS) 952 #endif // defined(OS_CHROMEOS)
960 { 953 {
961 "enable-views-textfield", 954 "enable-views-textfield",
962 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, 955 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME,
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
1611 } 1604 }
1612 1605
1613 const Experiment* GetExperiments(size_t* count) { 1606 const Experiment* GetExperiments(size_t* count) {
1614 *count = num_experiments; 1607 *count = num_experiments;
1615 return experiments; 1608 return experiments;
1616 } 1609 }
1617 1610
1618 } // namespace testing 1611 } // namespace testing
1619 1612
1620 } // namespace about_flags 1613 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/login/login_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698