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

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

Issue 225023031: Hack SkRecord in as an alternate recording mode in cc/resources/picture. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to latest patches Created 6 years, 8 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
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 1735 matching lines...) Expand 10 before | Expand all | Expand 10 after
1746 "touch-scrolling-mode", 1746 "touch-scrolling-mode",
1747 IDS_FLAGS_TOUCH_SCROLLING_MODE_NAME, 1747 IDS_FLAGS_TOUCH_SCROLLING_MODE_NAME,
1748 IDS_FLAGS_TOUCH_SCROLLING_MODE_DESCRIPTION, 1748 IDS_FLAGS_TOUCH_SCROLLING_MODE_DESCRIPTION,
1749 kOsWin | kOsLinux | kOsCrOS | kOsAndroid, 1749 kOsWin | kOsLinux | kOsCrOS | kOsAndroid,
1750 MULTI_VALUE_TYPE(kTouchScrollingModeChoices) 1750 MULTI_VALUE_TYPE(kTouchScrollingModeChoices)
1751 }, 1751 },
1752 { 1752 {
1753 "bleeding-edge-renderer-mode", 1753 "bleeding-edge-renderer-mode",
1754 IDS_FLAGS_BLEEDING_RENDERER_NAME, 1754 IDS_FLAGS_BLEEDING_RENDERER_NAME,
1755 IDS_FLAGS_BLEEDING_RENDERER_DESCRIPTION, 1755 IDS_FLAGS_BLEEDING_RENDERER_DESCRIPTION,
1756 kOsAndroid, 1756 kOsAll,
1757 SINGLE_VALUE_TYPE(switches::kEnableBleedingEdgeRenderingFastPaths) 1757 SINGLE_VALUE_TYPE(switches::kEnableBleedingEdgeRenderingFastPaths)
1758 }, 1758 },
1759 { 1759 {
1760 "enable-settings-window", 1760 "enable-settings-window",
1761 IDS_FLAGS_ENABLE_SETTINGS_WINDOW_NAME, 1761 IDS_FLAGS_ENABLE_SETTINGS_WINDOW_NAME,
1762 IDS_FLAGS_ENABLE_SETTINGS_WINDOW_DESCRIPTION, 1762 IDS_FLAGS_ENABLE_SETTINGS_WINDOW_DESCRIPTION,
1763 kOsDesktop, 1763 kOsDesktop,
1764 SINGLE_VALUE_TYPE(switches::kEnableSettingsWindow) 1764 SINGLE_VALUE_TYPE(switches::kEnableSettingsWindow)
1765 }, 1765 },
1766 #if defined(OS_ANDROID) 1766 #if defined(OS_ANDROID)
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
2313 } 2313 }
2314 2314
2315 const Experiment* GetExperiments(size_t* count) { 2315 const Experiment* GetExperiments(size_t* count) {
2316 *count = num_experiments; 2316 *count = num_experiments;
2317 return experiments; 2317 return experiments;
2318 } 2318 }
2319 2319
2320 } // namespace testing 2320 } // namespace testing
2321 2321
2322 } // namespace about_flags 2322 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698