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

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

Issue 10407044: Disables touch-optimized-ui on windows since if enabled it causes a (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « no previous file | 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) 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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 IDS_FLAGS_ENABLE_ASYNCHRONOUS_SPELLCHECKING, 618 IDS_FLAGS_ENABLE_ASYNCHRONOUS_SPELLCHECKING,
619 IDS_FLAGS_ENABLE_ASYNCHRONOUS_SPELLCHECKING_DESCRIPTION, 619 IDS_FLAGS_ENABLE_ASYNCHRONOUS_SPELLCHECKING_DESCRIPTION,
620 kOsAll, 620 kOsAll,
621 SINGLE_VALUE_TYPE(switches::kEnableAsynchronousSpellChecking) 621 SINGLE_VALUE_TYPE(switches::kEnableAsynchronousSpellChecking)
622 }, 622 },
623 #endif 623 #endif
624 { 624 {
625 "touch-optimized-ui", 625 "touch-optimized-ui",
626 IDS_FLAGS_TOUCH_OPTIMIZED_UI_NAME, 626 IDS_FLAGS_TOUCH_OPTIMIZED_UI_NAME,
627 IDS_FLAGS_TOUCH_OPTIMIZED_UI_DESCRIPTION, 627 IDS_FLAGS_TOUCH_OPTIMIZED_UI_DESCRIPTION,
628 kOsWin | kOsCrOS, 628 kOsCrOS,
629 MULTI_VALUE_TYPE(kTouchOptimizedUIChoices) 629 MULTI_VALUE_TYPE(kTouchOptimizedUIChoices)
630 }, 630 },
631 { 631 {
632 "enable-touch-events", 632 "enable-touch-events",
633 IDS_ENABLE_TOUCH_EVENTS_NAME, 633 IDS_ENABLE_TOUCH_EVENTS_NAME,
634 IDS_ENABLE_TOUCH_EVENTS_DESCRIPTION, 634 IDS_ENABLE_TOUCH_EVENTS_DESCRIPTION,
635 kOsAll, 635 kOsAll,
636 SINGLE_VALUE_TYPE(switches::kEnableTouchEvents) 636 SINGLE_VALUE_TYPE(switches::kEnableTouchEvents)
637 }, 637 },
638 #if defined(OS_CHROMEOS) 638 #if defined(OS_CHROMEOS)
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
1153 } 1153 }
1154 1154
1155 const Experiment* GetExperiments(size_t* count) { 1155 const Experiment* GetExperiments(size_t* count) {
1156 *count = num_experiments; 1156 *count = num_experiments;
1157 return experiments; 1157 return experiments;
1158 } 1158 }
1159 1159
1160 } // namespace testing 1160 } // namespace testing
1161 1161
1162 } // namespace about_flags 1162 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698