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

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

Issue 236313006: cc: Add initial GPU-to-GPU copy rasterizer implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 | Annotate | Revision Log
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 1494 matching lines...) Expand 10 before | Expand all | Expand 10 after
1505 SINGLE_VALUE_TYPE("enable-accessibility-script-injection") 1505 SINGLE_VALUE_TYPE("enable-accessibility-script-injection")
1506 }, 1506 },
1507 #endif 1507 #endif
1508 { 1508 {
1509 "map-image", 1509 "map-image",
1510 IDS_FLAGS_MAP_IMAGE_NAME, 1510 IDS_FLAGS_MAP_IMAGE_NAME,
1511 IDS_FLAGS_MAP_IMAGE_DESCRIPTION, 1511 IDS_FLAGS_MAP_IMAGE_DESCRIPTION,
1512 kOsAll, 1512 kOsAll,
1513 MULTI_VALUE_TYPE(kMapImageChoices) 1513 MULTI_VALUE_TYPE(kMapImageChoices)
1514 }, 1514 },
1515 {
1516 // TODO(reveman): Add kOsMac when GL_TEXTURE_RECTANGLE_ARB support has been
1517 // added to CHROMIUM_copy_texture.
1518 "disable-zero-copy",
1519 IDS_FLAGS_ZERO_COPY_NAME,
1520 IDS_FLAGS_ZERO_COPY_DESCRIPTION,
1521 kOsWin | kOsLinux | kOsAndroid | kOsCrOS,
1522 SINGLE_VALUE_TYPE(switches::kDisableZeroCopy)
1523 },
1515 #if defined(OS_CHROMEOS) 1524 #if defined(OS_CHROMEOS)
1516 { 1525 {
1517 "disable-first-run-ui", 1526 "disable-first-run-ui",
1518 IDS_FLAGS_DISABLE_FIRST_RUN_UI_NAME, 1527 IDS_FLAGS_DISABLE_FIRST_RUN_UI_NAME,
1519 IDS_FLAGS_DISABLE_FIRST_RUN_UI_DESCRIPTION, 1528 IDS_FLAGS_DISABLE_FIRST_RUN_UI_DESCRIPTION,
1520 kOsCrOS, 1529 kOsCrOS,
1521 SINGLE_VALUE_TYPE(chromeos::switches::kDisableFirstRunUI) 1530 SINGLE_VALUE_TYPE(chromeos::switches::kDisableFirstRunUI)
1522 }, 1531 },
1523 { 1532 {
1524 "enable-first-run-ui-transitions", 1533 "enable-first-run-ui-transitions",
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
2313 } 2322 }
2314 2323
2315 const Experiment* GetExperiments(size_t* count) { 2324 const Experiment* GetExperiments(size_t* count) {
2316 *count = num_experiments; 2325 *count = num_experiments;
2317 return experiments; 2326 return experiments;
2318 } 2327 }
2319 2328
2320 } // namespace testing 2329 } // namespace testing
2321 2330
2322 } // namespace about_flags 2331 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698