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 10546158: Remove --default-device-scale-factor (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 | chrome/browser/chromeos/login/login_utils.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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 SINGLE_VALUE_TYPE_AND_VALUE(switches::kAllowNaClSocketAPI, "*") 706 SINGLE_VALUE_TYPE_AND_VALUE(switches::kAllowNaClSocketAPI, "*")
707 }, 707 },
708 { 708 {
709 "stacked-tab-strip", 709 "stacked-tab-strip",
710 IDS_FLAGS_STACKED_TAB_STRIP_NAME, 710 IDS_FLAGS_STACKED_TAB_STRIP_NAME,
711 IDS_FLAGS_STACKED_TAB_STRIP_DESCRIPTION, 711 IDS_FLAGS_STACKED_TAB_STRIP_DESCRIPTION,
712 kOsWin, 712 kOsWin,
713 SINGLE_VALUE_TYPE(switches::kEnableStackedTabStrip) 713 SINGLE_VALUE_TYPE(switches::kEnableStackedTabStrip)
714 }, 714 },
715 { 715 {
716 "default-device-scale-factor", 716 "force-device-scale-factor",
717 IDS_FLAGS_FORCE_HIGH_DPI_NAME, 717 IDS_FLAGS_FORCE_HIGH_DPI_NAME,
718 IDS_FLAGS_FORCE_HIGH_DPI_DESCRIPTION, 718 IDS_FLAGS_FORCE_HIGH_DPI_DESCRIPTION,
719 kOsCrOS, 719 kOsCrOS,
720 SINGLE_VALUE_TYPE_AND_VALUE(switches::kDefaultDeviceScaleFactor, "2") 720 SINGLE_VALUE_TYPE_AND_VALUE(switches::kForceDeviceScaleFactor, "2")
721 }, 721 },
722 #if defined(OS_CHROMEOS) 722 #if defined(OS_CHROMEOS)
723 { 723 {
724 "allow-touchpad-three-finger-click", 724 "allow-touchpad-three-finger-click",
725 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME, 725 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME,
726 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION, 726 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION,
727 kOsCrOS, 727 kOsCrOS,
728 SINGLE_VALUE_TYPE(switches::kEnableTouchpadThreeFingerClick) 728 SINGLE_VALUE_TYPE(switches::kEnableTouchpadThreeFingerClick)
729 }, 729 },
730 #endif 730 #endif
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
1216 } 1216 }
1217 1217
1218 const Experiment* GetExperiments(size_t* count) { 1218 const Experiment* GetExperiments(size_t* count) {
1219 *count = num_experiments; 1219 *count = num_experiments;
1220 return experiments; 1220 return experiments;
1221 } 1221 }
1222 1222
1223 } // namespace testing 1223 } // namespace testing
1224 1224
1225 } // namespace about_flags 1225 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/login_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698