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

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

Issue 329423002: Delete RenderLayerCompositor::requiresOverhangLayers (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 | « no previous file | Source/core/rendering/compositing/RenderLayerCompositor.cpp » ('j') | 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 Page* page() const; 222 Page* page() const;
223 223
224 GraphicsLayerFactory* graphicsLayerFactory() const; 224 GraphicsLayerFactory* graphicsLayerFactory() const;
225 ScrollingCoordinator* scrollingCoordinator() const; 225 ScrollingCoordinator* scrollingCoordinator() const;
226 226
227 void enableCompositingModeIfNeeded(); 227 void enableCompositingModeIfNeeded();
228 228
229 bool requiresHorizontalScrollbarLayer() const; 229 bool requiresHorizontalScrollbarLayer() const;
230 bool requiresVerticalScrollbarLayer() const; 230 bool requiresVerticalScrollbarLayer() const;
231 bool requiresScrollCornerLayer() const; 231 bool requiresScrollCornerLayer() const;
232 #if USE(RUBBER_BANDING)
233 bool requiresOverhangLayers() const;
234 #endif
235 232
236 void applyUpdateLayerCompositingStateChickenEggHacks(RenderLayer*, Compositi ngStateTransitionType compositedLayerUpdate); 233 void applyUpdateLayerCompositingStateChickenEggHacks(RenderLayer*, Compositi ngStateTransitionType compositedLayerUpdate);
237 234
238 DocumentLifecycle& lifecycle() const; 235 DocumentLifecycle& lifecycle() const;
239 236
240 void applyOverlayFullscreenVideoAdjustment(); 237 void applyOverlayFullscreenVideoAdjustment();
241 238
242 RenderView& m_renderView; 239 RenderView& m_renderView;
243 OwnPtr<GraphicsLayer> m_rootContentLayer; 240 OwnPtr<GraphicsLayer> m_rootContentLayer;
244 OwnPtr<GraphicsLayer> m_rootTransformLayer; 241 OwnPtr<GraphicsLayer> m_rootTransformLayer;
(...skipping 30 matching lines...) Expand all
275 OwnPtr<GraphicsLayer> m_layerForVerticalScrollbar; 272 OwnPtr<GraphicsLayer> m_layerForVerticalScrollbar;
276 OwnPtr<GraphicsLayer> m_layerForScrollCorner; 273 OwnPtr<GraphicsLayer> m_layerForScrollCorner;
277 #if USE(RUBBER_BANDING) 274 #if USE(RUBBER_BANDING)
278 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; 275 OwnPtr<GraphicsLayer> m_layerForOverhangShadow;
279 #endif 276 #endif
280 }; 277 };
281 278
282 } // namespace WebCore 279 } // namespace WebCore
283 280
284 #endif // RenderLayerCompositor_h 281 #endif // RenderLayerCompositor_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/rendering/compositing/RenderLayerCompositor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698