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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/GraphicsLayer.h

Issue 1895443003: Mark foregroundLayer under scrollingContentsLayer GraphicsLayerPaintOverflowContents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « third_party/WebKit/Source/core/layout/compositing/CompositedLayerMappingTest.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 * Copyright (C) 2013 Intel Corporation. All rights reserved. 3 * Copyright (C) 2013 Intel Corporation. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 170
171 void setBlendMode(WebBlendMode); 171 void setBlendMode(WebBlendMode);
172 void setIsRootForIsolatedGroup(bool); 172 void setIsRootForIsolatedGroup(bool);
173 173
174 void setFilters(const FilterOperations&); 174 void setFilters(const FilterOperations&);
175 void setBackdropFilters(const FilterOperations&); 175 void setBackdropFilters(const FilterOperations&);
176 176
177 void setFilterQuality(SkFilterQuality); 177 void setFilterQuality(SkFilterQuality);
178 178
179 // Some GraphicsLayers paint only the foreground or the background content 179 // Some GraphicsLayers paint only the foreground or the background content
180 GraphicsLayerPaintingPhase paintingPhase() const { return m_paintingPhase; }
180 void setPaintingPhase(GraphicsLayerPaintingPhase); 181 void setPaintingPhase(GraphicsLayerPaintingPhase);
181 182
182 void setNeedsDisplay(); 183 void setNeedsDisplay();
183 // Mark the given rect (in layer coords) as needing display. Never goes deep . 184 // Mark the given rect (in layer coords) as needing display. Never goes deep .
184 void setNeedsDisplayInRect(const IntRect&, PaintInvalidationReason, const Di splayItemClient&); 185 void setNeedsDisplayInRect(const IntRect&, PaintInvalidationReason, const Di splayItemClient&);
185 186
186 void setContentsNeedsDisplay(); 187 void setContentsNeedsDisplay();
187 188
188 void invalidateDisplayItemClient(const DisplayItemClient&, PaintInvalidation Reason); 189 void invalidateDisplayItemClient(const DisplayItemClient&, PaintInvalidation Reason);
189 190
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 }; 362 };
362 363
363 } // namespace blink 364 } // namespace blink
364 365
365 #ifndef NDEBUG 366 #ifndef NDEBUG
366 // Outside the blink namespace for ease of invocation from gdb. 367 // Outside the blink namespace for ease of invocation from gdb.
367 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); 368 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*);
368 #endif 369 #endif
369 370
370 #endif // GraphicsLayer_h 371 #endif // GraphicsLayer_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/compositing/CompositedLayerMappingTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698