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

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

Issue 82553012: Android: Disable about:flags impl-side-painting override (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/chrome_browser_main.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 1363 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 "enable-apps-devtool-app", 1374 "enable-apps-devtool-app",
1375 IDS_FLAGS_ENABLE_APPS_DEVTOOL_APP_NAME, 1375 IDS_FLAGS_ENABLE_APPS_DEVTOOL_APP_NAME,
1376 IDS_FLAGS_ENABLE_APPS_DEVTOOL_APP_DESCRIPTION, 1376 IDS_FLAGS_ENABLE_APPS_DEVTOOL_APP_DESCRIPTION,
1377 kOsDesktop, 1377 kOsDesktop,
1378 SINGLE_VALUE_TYPE(switches::kAppsDevtool) 1378 SINGLE_VALUE_TYPE(switches::kAppsDevtool)
1379 }, 1379 },
1380 { 1380 {
1381 "impl-side-painting", 1381 "impl-side-painting",
1382 IDS_FLAGS_IMPL_SIDE_PAINTING_NAME, 1382 IDS_FLAGS_IMPL_SIDE_PAINTING_NAME,
1383 IDS_FLAGS_IMPL_SIDE_PAINTING_DESCRIPTION, 1383 IDS_FLAGS_IMPL_SIDE_PAINTING_DESCRIPTION,
1384 kOsAndroid | kOsLinux | kOsCrOS, 1384 kOsLinux | kOsCrOS,
1385 MULTI_VALUE_TYPE(kImplSidePaintingChoices) 1385 MULTI_VALUE_TYPE(kImplSidePaintingChoices)
1386 }, 1386 },
1387 { 1387 {
1388 "deadline-scheduling", 1388 "deadline-scheduling",
1389 IDS_FLAGS_DEADLINE_SCHEDULING_NAME, 1389 IDS_FLAGS_DEADLINE_SCHEDULING_NAME,
1390 IDS_FLAGS_DEADLINE_SCHEDULING_DESCRIPTION, 1390 IDS_FLAGS_DEADLINE_SCHEDULING_DESCRIPTION,
1391 kOsMac | kOsWin | kOsLinux | kOsCrOS | kOsAndroid, 1391 kOsMac | kOsWin | kOsLinux | kOsCrOS | kOsAndroid,
1392 MULTI_VALUE_TYPE(kDeadlineSchedulingChoices) 1392 MULTI_VALUE_TYPE(kDeadlineSchedulingChoices)
1393 }, 1393 },
1394 { 1394 {
(...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after
2322 } 2322 }
2323 2323
2324 const Experiment* GetExperiments(size_t* count) { 2324 const Experiment* GetExperiments(size_t* count) {
2325 *count = num_experiments; 2325 *count = num_experiments;
2326 return experiments; 2326 return experiments;
2327 } 2327 }
2328 2328
2329 } // namespace testing 2329 } // namespace testing
2330 2330
2331 } // namespace about_flags 2331 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698