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

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

Issue 8590011: Remove PPAPI Flash in-process from about:flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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') | 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 SINGLE_VALUE_TYPE(switches::kFocusExistingTabOnOpen) 243 SINGLE_VALUE_TYPE(switches::kFocusExistingTabOnOpen)
244 }, 244 },
245 { 245 {
246 "tab-groups-context-menu", 246 "tab-groups-context-menu",
247 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, 247 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME,
248 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, 248 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION,
249 kOsWin, 249 kOsWin,
250 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) 250 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu)
251 }, 251 },
252 { 252 {
253 "ppapi-flash-in-process",
254 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_NAME,
255 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_DESCRIPTION,
256 kOsAll,
257 SINGLE_VALUE_TYPE(switches::kPpapiFlashInProcess)
258 },
259 {
260 "preload-instant-search", 253 "preload-instant-search",
261 IDS_FLAGS_PRELOAD_INSTANT_SEARCH_NAME, 254 IDS_FLAGS_PRELOAD_INSTANT_SEARCH_NAME,
262 IDS_FLAGS_PRELOAD_INSTANT_SEARCH_DESCRIPTION, 255 IDS_FLAGS_PRELOAD_INSTANT_SEARCH_DESCRIPTION,
263 kOsAll, 256 kOsAll,
264 SINGLE_VALUE_TYPE(switches::kPreloadInstantSearch) 257 SINGLE_VALUE_TYPE(switches::kPreloadInstantSearch)
265 }, 258 },
266 { 259 {
267 "static-ip-config", 260 "static-ip-config",
268 IDS_FLAGS_STATIC_IP_CONFIG_NAME, 261 IDS_FLAGS_STATIC_IP_CONFIG_NAME,
269 IDS_FLAGS_STATIC_IP_CONFIG_DESCRIPTION, 262 IDS_FLAGS_STATIC_IP_CONFIG_DESCRIPTION,
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 } 856 }
864 857
865 const Experiment* GetExperiments(size_t* count) { 858 const Experiment* GetExperiments(size_t* count) {
866 *count = num_experiments; 859 *count = num_experiments;
867 return experiments; 860 return experiments;
868 } 861 }
869 862
870 } // namespace testing 863 } // namespace testing
871 864
872 } // namespace about_flags 865 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698