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

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

Issue 10536033: aura: Remove --aura-disable-hold-mouse-moves flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: "" Created 8 years, 6 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 | ui/aura/aura_switches.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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 }, 481 },
482 #if defined(USE_ASH) 482 #if defined(USE_ASH)
483 { 483 {
484 "aura-google-dialog-frames", 484 "aura-google-dialog-frames",
485 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME, 485 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME,
486 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION, 486 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION,
487 kOsWin | kOsLinux | kOsCrOS, 487 kOsWin | kOsLinux | kOsCrOS,
488 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames) 488 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames)
489 }, 489 },
490 #endif 490 #endif
491 #if defined(USE_AURA)
492 {
493 "aura-disable-hold-mouse-moves",
494 IDS_FLAGS_AURA_DISABLE_HOLD_MOUSE_MOVES_NAME,
495 IDS_FLAGS_AURA_DISABLE_HOLD_MOUSE_MOVES_DESCRIPTION,
496 kOsWin | kOsLinux | kOsCrOS,
497 SINGLE_VALUE_TYPE(switches::kAuraDisableHoldMouseMoves)
498 },
499 #endif // defined(USE_AURA)
500 { 491 {
501 "enable-gamepad", 492 "enable-gamepad",
502 IDS_FLAGS_ENABLE_GAMEPAD_NAME, 493 IDS_FLAGS_ENABLE_GAMEPAD_NAME,
503 IDS_FLAGS_ENABLE_GAMEPAD_DESCRIPTION, 494 IDS_FLAGS_ENABLE_GAMEPAD_DESCRIPTION,
504 kOsAll, 495 kOsAll,
505 SINGLE_VALUE_TYPE(switches::kEnableGamepad) 496 SINGLE_VALUE_TYPE(switches::kEnableGamepad)
506 }, 497 },
507 { 498 {
508 "per-tile-painting", 499 "per-tile-painting",
509 IDS_FLAGS_PER_TILE_PAINTING_NAME, 500 IDS_FLAGS_PER_TILE_PAINTING_NAME,
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after
1190 } 1181 }
1191 1182
1192 const Experiment* GetExperiments(size_t* count) { 1183 const Experiment* GetExperiments(size_t* count) {
1193 *count = num_experiments; 1184 *count = num_experiments;
1194 return experiments; 1185 return experiments;
1195 } 1186 }
1196 1187
1197 } // namespace testing 1188 } // namespace testing
1198 1189
1199 } // namespace about_flags 1190 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | ui/aura/aura_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698