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

Side by Side Diff: content/public/common/content_switches.cc

Issue 10909242: Add "panel_fitting" GPU feature type and use it for mirror mode. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Reorganized code per oshima's suggestion. Created 8 years, 3 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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // By default, file:// URIs cannot read other file:// URIs. This is an 9 // By default, file:// URIs cannot read other file:// URIs. This is an
10 // override for developers who need the old behavior for testing. 10 // override for developers who need the old behavior for testing.
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 707
708 // Sets the width and height above which a composited layer will get tiled. 708 // Sets the width and height above which a composited layer will get tiled.
709 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; 709 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width";
710 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; 710 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height";
711 711
712 const char kEnableFixedPositionCreatesStackingContext[] 712 const char kEnableFixedPositionCreatesStackingContext[]
713 = "enable-fixed-position-creates-stacking-context"; 713 = "enable-fixed-position-creates-stacking-context";
714 const char kDisableFixedPositionCreatesStackingContext[] 714 const char kDisableFixedPositionCreatesStackingContext[]
715 = "disable-fixed-position-creates-stacking-context"; 715 = "disable-fixed-position-creates-stacking-context";
716 716
717 const char kDisablePanelFitting[] = "disable-panel-fitting";
718
717 } // namespace switches 719 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698