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

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

Issue 10832252: Remove touch optimized layout on ChromeOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup Created 8 years, 4 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 | « build/common.gypi ('k') | content/browser/web_contents/web_contents_impl.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 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 IDS_FLAGS_DISABLE_ASYNCHRONOUS_SPELLCHECKING, 688 IDS_FLAGS_DISABLE_ASYNCHRONOUS_SPELLCHECKING,
689 IDS_FLAGS_DISABLE_ASYNCHRONOUS_SPELLCHECKING_DESCRIPTION, 689 IDS_FLAGS_DISABLE_ASYNCHRONOUS_SPELLCHECKING_DESCRIPTION,
690 kOsWin | kOsLinux | kOsCrOS, 690 kOsWin | kOsLinux | kOsCrOS,
691 SINGLE_VALUE_TYPE(switches::kDisableAsynchronousSpellChecking) 691 SINGLE_VALUE_TYPE(switches::kDisableAsynchronousSpellChecking)
692 }, 692 },
693 #endif 693 #endif
694 { 694 {
695 "touch-optimized-ui", 695 "touch-optimized-ui",
696 IDS_FLAGS_TOUCH_OPTIMIZED_UI_NAME, 696 IDS_FLAGS_TOUCH_OPTIMIZED_UI_NAME,
697 IDS_FLAGS_TOUCH_OPTIMIZED_UI_DESCRIPTION, 697 IDS_FLAGS_TOUCH_OPTIMIZED_UI_DESCRIPTION,
698 kOsWin | kOsCrOS, 698 kOsWin,
699 MULTI_VALUE_TYPE(kTouchOptimizedUIChoices) 699 MULTI_VALUE_TYPE(kTouchOptimizedUIChoices)
700 }, 700 },
701 { 701 {
702 "enable-touch-events", 702 "enable-touch-events",
703 IDS_ENABLE_TOUCH_EVENTS_NAME, 703 IDS_ENABLE_TOUCH_EVENTS_NAME,
704 IDS_ENABLE_TOUCH_EVENTS_DESCRIPTION, 704 IDS_ENABLE_TOUCH_EVENTS_DESCRIPTION,
705 kOsAll, 705 kOsAll,
706 SINGLE_VALUE_TYPE(switches::kEnableTouchEvents) 706 SINGLE_VALUE_TYPE(switches::kEnableTouchEvents)
707 }, 707 },
708 #if defined(OS_CHROMEOS) 708 #if defined(OS_CHROMEOS)
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
1334 } 1334 }
1335 1335
1336 const Experiment* GetExperiments(size_t* count) { 1336 const Experiment* GetExperiments(size_t* count) {
1337 *count = num_experiments; 1337 *count = num_experiments;
1338 return experiments; 1338 return experiments;
1339 } 1339 }
1340 1340
1341 } // namespace testing 1341 } // namespace testing
1342 1342
1343 } // namespace about_flags 1343 } // namespace about_flags
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698