OLD | NEW |
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 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 // Configures the time after a GestureFlingCancel in which taps are cancelled. | 625 // Configures the time after a GestureFlingCancel in which taps are cancelled. |
626 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; | 626 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; |
627 | 627 |
628 // Maximum time between mousedown and mouseup to be considered a tap. | 628 // Maximum time between mousedown and mouseup to be considered a tap. |
629 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; | 629 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; |
630 | 630 |
631 // Forces usage of the test compositor. Needed to run ui tests on bots. | 631 // Forces usage of the test compositor. Needed to run ui tests on bots. |
632 extern const char kTestCompositor[] = "test-compositor"; | 632 extern const char kTestCompositor[] = "test-compositor"; |
633 #endif | 633 #endif |
634 | 634 |
| 635 // Sets the tile size used by composited layers. |
| 636 const char kDefaultTileWidth[] = "default-tile-width"; |
| 637 const char kDefaultTileHeight[] = "default-tile-height"; |
| 638 |
| 639 // Sets the width and height above which a composited layer will get tiled. |
| 640 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; |
| 641 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; |
| 642 |
635 } // namespace switches | 643 } // namespace switches |
OLD | NEW |