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

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

Issue 137993009: Remove more non-aura windows code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: renable the disabled tests Created 6 years, 11 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 | « no previous file | chrome/browser/automation/automation_provider.h » ('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 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 SINGLE_VALUE_TYPE(cc::switches::kEnablePerTilePainting) 883 SINGLE_VALUE_TYPE(cc::switches::kEnablePerTilePainting)
884 }, 884 },
885 { 885 {
886 "enable-javascript-harmony", 886 "enable-javascript-harmony",
887 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_NAME, 887 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_NAME,
888 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_DESCRIPTION, 888 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_DESCRIPTION,
889 kOsAll, 889 kOsAll,
890 SINGLE_VALUE_TYPE_AND_VALUE(switches::kJavaScriptFlags, "--harmony") 890 SINGLE_VALUE_TYPE_AND_VALUE(switches::kJavaScriptFlags, "--harmony")
891 }, 891 },
892 { 892 {
893 "enable-tab-browser-dragging",
894 IDS_FLAGS_ENABLE_TAB_BROWSER_DRAGGING_NAME,
895 IDS_FLAGS_ENABLE_TAB_BROWSER_DRAGGING_DESCRIPTION,
896 kOsWin,
897 SINGLE_VALUE_TYPE(switches::kTabBrowserDragging)
898 },
899 {
900 "disable-restore-session-state", 893 "disable-restore-session-state",
901 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_NAME, 894 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_NAME,
902 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_DESCRIPTION, 895 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_DESCRIPTION,
903 kOsAll, 896 kOsAll,
904 SINGLE_VALUE_TYPE(switches::kDisableRestoreSessionState) 897 SINGLE_VALUE_TYPE(switches::kDisableRestoreSessionState)
905 }, 898 },
906 { 899 {
907 "disable-software-rasterizer", 900 "disable-software-rasterizer",
908 IDS_FLAGS_DISABLE_SOFTWARE_RASTERIZER_NAME, 901 IDS_FLAGS_DISABLE_SOFTWARE_RASTERIZER_NAME,
909 IDS_FLAGS_DISABLE_SOFTWARE_RASTERIZER_DESCRIPTION, 902 IDS_FLAGS_DISABLE_SOFTWARE_RASTERIZER_DESCRIPTION,
(...skipping 1554 matching lines...) Expand 10 before | Expand all | Expand 10 after
2464 } 2457 }
2465 2458
2466 const Experiment* GetExperiments(size_t* count) { 2459 const Experiment* GetExperiments(size_t* count) {
2467 *count = num_experiments; 2460 *count = num_experiments;
2468 return experiments; 2461 return experiments;
2469 } 2462 }
2470 2463
2471 } // namespace testing 2464 } // namespace testing
2472 2465
2473 } // namespace about_flags 2466 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/automation/automation_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698