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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/SubsequenceRecorder.h

Issue 1425593007: Separate display item clients for negative and normal/positive z-order children (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Struct DisplayItemClient Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/paint/SubsequenceRecorder.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/SubsequenceRecorder.h b/third_party/WebKit/Source/platform/graphics/paint/SubsequenceRecorder.h
index 04127d1b68f15524e3c04eecef7cc850ffd5b489..498ec4ef8de1a367bada9d65254cb380d0156f3e 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/SubsequenceRecorder.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/SubsequenceRecorder.h
@@ -22,9 +22,9 @@ class PaintController;
//
class PLATFORM_EXPORT SubsequenceRecorder {
public:
- static bool useCachedSubsequenceIfPossible(GraphicsContext&, const DisplayItemClientWrapper&, DisplayItem::Type);
+ static bool useCachedSubsequenceIfPossible(GraphicsContext&, const DisplayItemClientWrapper&);
- SubsequenceRecorder(GraphicsContext&, const DisplayItemClientWrapper&, DisplayItem::Type);
+ SubsequenceRecorder(GraphicsContext&, const DisplayItemClientWrapper&);
~SubsequenceRecorder();
void setUncacheable();
@@ -33,7 +33,6 @@ private:
PaintController& m_paintController;
DisplayItemClientWrapper m_client;
size_t m_beginSubsequenceIndex;
- DisplayItem::Type m_type;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698