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

Side by Side Diff: Source/platform/graphics/CompositingReasons.cpp

Issue 1287623002: Delete blink code for scroll-blocks-on (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merge with trunk (no changes from previous patch) Created 5 years, 4 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "config.h" 5 #include "config.h"
6 #include "platform/graphics/CompositingReasons.h" 6 #include "platform/graphics/CompositingReasons.h"
7 7
8 #include "wtf/StdLibExtras.h" 8 #include "wtf/StdLibExtras.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 "Scroll parent is not an ancestor" }, 48 "Scroll parent is not an ancestor" },
49 { CompositingReasonOutOfFlowClipping, 49 { CompositingReasonOutOfFlowClipping,
50 "outOfFlowClipping", 50 "outOfFlowClipping",
51 "Has clipping ancestor" }, 51 "Has clipping ancestor" },
52 { CompositingReasonVideoOverlay, 52 { CompositingReasonVideoOverlay,
53 "videoOverlay", 53 "videoOverlay",
54 "Is overlay controls for video" }, 54 "Is overlay controls for video" },
55 { CompositingReasonWillChangeCompositingHint, 55 { CompositingReasonWillChangeCompositingHint,
56 "willChange", 56 "willChange",
57 "Has a will-change compositing hint" }, 57 "Has a will-change compositing hint" },
58 { CompositingReasonScrollBlocksOn,
59 "scrollBlocksOn",
60 "Has a CSS scroll-blocks-on value other than none" },
61 { CompositingReasonCompositorProxy, 58 { CompositingReasonCompositorProxy,
62 "compositorProxy", 59 "compositorProxy",
63 "Has a CompositorProxy object" }, 60 "Has a CompositorProxy object" },
64 { CompositingReasonAssumedOverlap, 61 { CompositingReasonAssumedOverlap,
65 "assumedOverlap", 62 "assumedOverlap",
66 "Might overlap other composited content" }, 63 "Might overlap other composited content" },
67 { CompositingReasonOverlap, 64 { CompositingReasonOverlap,
68 "overlap", 65 "overlap",
69 "Overlaps other composited content" }, 66 "Overlaps other composited content" },
70 { CompositingReasonNegativeZIndexChildren, 67 { CompositingReasonNegativeZIndexChildren,
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 "layerForScrollingBlockSelection", 194 "layerForScrollingBlockSelection",
198 "Secondary layer, to house block selection gaps for composited scrolling with no scrolling contents" }, 195 "Secondary layer, to house block selection gaps for composited scrolling with no scrolling contents" },
199 { CompositingReasonInlineTransform, 196 { CompositingReasonInlineTransform,
200 "inlineTransform", 197 "inlineTransform",
201 "Has an inline transform, which causes subsequent layers to assume overl ap" }, 198 "Has an inline transform, which causes subsequent layers to assume overl ap" },
202 }; 199 };
203 200
204 size_t kNumberOfCompositingReasons = WTF_ARRAY_LENGTH(kCompositingReasonStringMa p); 201 size_t kNumberOfCompositingReasons = WTF_ARRAY_LENGTH(kCompositingReasonStringMa p);
205 202
206 } // namespace blink 203 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/graphics/CompositingReasons.h ('k') | Source/platform/graphics/GraphicsLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698