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

Side by Side Diff: Source/core/rendering/RenderLayerBacking.h

Issue 14974003: Remove codes related to scaling in GraphicsLayer tree. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch to land: Remove an unused memeber in PageOverlay.cpp to compile in Mac. Created 7 years, 7 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 /* 1 /*
2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2009, 2010, 2011 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 void positionOverflowControlsLayers(const IntSize& offsetFromRoot); 141 void positionOverflowControlsLayers(const IntSize& offsetFromRoot);
142 bool hasUnpositionedOverflowControlsLayers() const; 142 bool hasUnpositionedOverflowControlsLayers() const;
143 143
144 void updateDebugIndicators(bool showBorder, bool showRepaintCounter); 144 void updateDebugIndicators(bool showBorder, bool showRepaintCounter);
145 145
146 // GraphicsLayerClient interface 146 // GraphicsLayerClient interface
147 virtual void notifyAnimationStarted(const GraphicsLayer*, double startTime) OVERRIDE; 147 virtual void notifyAnimationStarted(const GraphicsLayer*, double startTime) OVERRIDE;
148 148
149 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsL ayerPaintingPhase, const IntRect& clip) OVERRIDE; 149 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsL ayerPaintingPhase, const IntRect& clip) OVERRIDE;
150 150
151 virtual float deviceScaleFactor() const OVERRIDE;
152 virtual float pageScaleFactor() const OVERRIDE;
153 virtual void didCommitChangesForLayer(const GraphicsLayer*) const OVERRIDE; 151 virtual void didCommitChangesForLayer(const GraphicsLayer*) const OVERRIDE;
154 virtual bool getCurrentTransform(const GraphicsLayer*, TransformationMatrix& ) const OVERRIDE; 152 virtual bool getCurrentTransform(const GraphicsLayer*, TransformationMatrix& ) const OVERRIDE;
155 153
156 virtual bool isTrackingRepaints() const OVERRIDE; 154 virtual bool isTrackingRepaints() const OVERRIDE;
157 155
158 #ifndef NDEBUG 156 #ifndef NDEBUG
159 virtual void verifyNotPainting(); 157 virtual void verifyNotPainting();
160 #endif 158 #endif
161 159
162 IntRect contentsBox() const; 160 IntRect contentsBox() const;
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 bool m_boundsConstrainedByClipping; 267 bool m_boundsConstrainedByClipping;
270 bool m_isMainFrameRenderViewLayer; 268 bool m_isMainFrameRenderViewLayer;
271 bool m_requiresOwnBackingStore; 269 bool m_requiresOwnBackingStore;
272 bool m_canCompositeFilters; 270 bool m_canCompositeFilters;
273 bool m_backgroundLayerPaintsFixedRootBackground; 271 bool m_backgroundLayerPaintsFixedRootBackground;
274 }; 272 };
275 273
276 } // namespace WebCore 274 } // namespace WebCore
277 275
278 #endif // RenderLayerBacking_h 276 #endif // RenderLayerBacking_h
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/GraphicsLayerClient.h ('k') | Source/core/rendering/RenderLayerBacking.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698