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

Side by Side Diff: Source/core/rendering/compositing/RenderLayerCompositor.h

Issue 334973002: Rename CompositingUpdateOnCompositedScroll to CompositingUpdateAfterGeometryChange (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Source/core/rendering/RenderLayerScrollableArea.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 27 matching lines...) Expand all
38 class GraphicsLayer; 38 class GraphicsLayer;
39 class RenderEmbeddedObject; 39 class RenderEmbeddedObject;
40 class RenderLayerStackingNode; 40 class RenderLayerStackingNode;
41 class RenderPart; 41 class RenderPart;
42 class RenderVideo; 42 class RenderVideo;
43 class ScrollingCoordinator; 43 class ScrollingCoordinator;
44 class StickyPositionViewportConstraints; 44 class StickyPositionViewportConstraints;
45 45
46 enum CompositingUpdateType { 46 enum CompositingUpdateType {
47 CompositingUpdateNone, 47 CompositingUpdateNone,
48 CompositingUpdateOnCompositedScroll, 48 CompositingUpdateAfterGeometryChange,
49 CompositingUpdateAfterCompositingInputChange, 49 CompositingUpdateAfterCompositingInputChange,
50 CompositingUpdateRebuildTree, 50 CompositingUpdateRebuildTree,
51 }; 51 };
52 52
53 enum CompositingStateTransitionType { 53 enum CompositingStateTransitionType {
54 NoCompositingStateChange, 54 NoCompositingStateChange,
55 AllocateOwnCompositedLayerMapping, 55 AllocateOwnCompositedLayerMapping,
56 RemoveOwnCompositedLayerMapping, 56 RemoveOwnCompositedLayerMapping,
57 PutInSquashingLayer, 57 PutInSquashingLayer,
58 RemoveFromSquashingLayer 58 RemoveFromSquashingLayer
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 #if USE(RUBBER_BANDING) 276 #if USE(RUBBER_BANDING)
277 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; 277 OwnPtr<GraphicsLayer> m_layerForOverhangShadow;
278 #endif 278 #endif
279 279
280 bool m_inOverlayFullscreenVideo; 280 bool m_inOverlayFullscreenVideo;
281 }; 281 };
282 282
283 } // namespace WebCore 283 } // namespace WebCore
284 284
285 #endif // RenderLayerCompositor_h 285 #endif // RenderLayerCompositor_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayerScrollableArea.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698