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

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

Issue 168423002: Revert of Remove --enable-per-tile-painting and --ui-enable-per-tile-painting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | « cc/base/switches.cc ('k') | chrome/browser/chromeos/login/chrome_restart_request.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 871 matching lines...) Expand 10 before | Expand all | Expand 10 after
882 SINGLE_VALUE_TYPE(switches::kDisableOpusPlayback) 882 SINGLE_VALUE_TYPE(switches::kDisableOpusPlayback)
883 }, 883 },
884 { 884 {
885 "disable-vp8-alpha-playback", 885 "disable-vp8-alpha-playback",
886 IDS_FLAGS_DISABLE_VP8_ALPHA_PLAYBACK_NAME, 886 IDS_FLAGS_DISABLE_VP8_ALPHA_PLAYBACK_NAME,
887 IDS_FLAGS_DISABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION, 887 IDS_FLAGS_DISABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION,
888 kOsDesktop, 888 kOsDesktop,
889 SINGLE_VALUE_TYPE(switches::kDisableVp8AlphaPlayback) 889 SINGLE_VALUE_TYPE(switches::kDisableVp8AlphaPlayback)
890 }, 890 },
891 { 891 {
892 "per-tile-painting",
893 IDS_FLAGS_PER_TILE_PAINTING_NAME,
894 IDS_FLAGS_PER_TILE_PAINTING_DESCRIPTION,
895 kOsMac | kOsLinux | kOsCrOS,
896 SINGLE_VALUE_TYPE(cc::switches::kEnablePerTilePainting)
897 },
898 {
892 "enable-javascript-harmony", 899 "enable-javascript-harmony",
893 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_NAME, 900 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_NAME,
894 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_DESCRIPTION, 901 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_DESCRIPTION,
895 kOsAll, 902 kOsAll,
896 SINGLE_VALUE_TYPE_AND_VALUE(switches::kJavaScriptFlags, "--harmony") 903 SINGLE_VALUE_TYPE_AND_VALUE(switches::kJavaScriptFlags, "--harmony")
897 }, 904 },
898 { 905 {
899 "disable-restore-session-state", 906 "disable-restore-session-state",
900 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_NAME, 907 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_NAME,
901 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_DESCRIPTION, 908 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_DESCRIPTION,
(...skipping 1604 matching lines...) Expand 10 before | Expand all | Expand 10 after
2506 } 2513 }
2507 2514
2508 const Experiment* GetExperiments(size_t* count) { 2515 const Experiment* GetExperiments(size_t* count) {
2509 *count = num_experiments; 2516 *count = num_experiments;
2510 return experiments; 2517 return experiments;
2511 } 2518 }
2512 2519
2513 } // namespace testing 2520 } // namespace testing
2514 2521
2515 } // namespace about_flags 2522 } // namespace about_flags
OLDNEW
« no previous file with comments | « cc/base/switches.cc ('k') | chrome/browser/chromeos/login/chrome_restart_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698