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

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

Issue 298953002: Remove --disable-app-shims. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync and rebase Created 6 years, 7 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 | « chrome/app/generated_resources.grd ('k') | chrome/browser/app_controller_mac.mm » ('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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1335 matching lines...) Expand 10 before | Expand all | Expand 10 after
1346 { 1346 {
1347 "enable-cloud-print-xps", 1347 "enable-cloud-print-xps",
1348 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_NAME, 1348 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_NAME,
1349 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_DESCRIPTION, 1349 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_DESCRIPTION,
1350 kOsWin, 1350 kOsWin,
1351 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintXps) 1351 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintXps)
1352 }, 1352 },
1353 #endif 1353 #endif
1354 #if defined(OS_MACOSX) 1354 #if defined(OS_MACOSX)
1355 { 1355 {
1356 "disable-app-shims",
1357 IDS_FLAGS_DISABLE_APP_SHIMS_NAME,
1358 IDS_FLAGS_DISABLE_APP_SHIMS_DESCRIPTION,
1359 kOsMac,
1360 SINGLE_VALUE_TYPE(switches::kDisableAppShims)
1361 },
1362 {
1363 "enable-simplified-fullscreen", 1356 "enable-simplified-fullscreen",
1364 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_NAME, 1357 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_NAME,
1365 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_DESCRIPTION, 1358 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_DESCRIPTION,
1366 kOsMac, 1359 kOsMac,
1367 SINGLE_VALUE_TYPE(switches::kEnableSimplifiedFullscreen) 1360 SINGLE_VALUE_TYPE(switches::kEnableSimplifiedFullscreen)
1368 }, 1361 },
1369 #endif 1362 #endif
1370 #if defined(USE_AURA) 1363 #if defined(USE_AURA)
1371 { 1364 {
1372 "tab-capture-upscale-quality", 1365 "tab-capture-upscale-quality",
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after
2369 } 2362 }
2370 2363
2371 const Experiment* GetExperiments(size_t* count) { 2364 const Experiment* GetExperiments(size_t* count) {
2372 *count = num_experiments; 2365 *count = num_experiments;
2373 return experiments; 2366 return experiments;
2374 } 2367 }
2375 2368
2376 } // namespace testing 2369 } // namespace testing
2377 2370
2378 } // namespace about_flags 2371 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/app_controller_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698