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

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

Issue 2027333004: Handle uncommitted PaintController in DisplayItemClient aliveness tracking (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.h b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.h
index 25a4ef52658767f6afff5991c5a8905c97bd590c..4a6bdbbb5f32c4ffd2ccd09b1b5e9bf0ed787f00 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.h
@@ -65,10 +65,11 @@ public:
bool isAlive() const;
// Called when any DisplayItem of this DisplayItemClient is added into PaintController
// using PaintController::createAndAppend().
- void beginShouldKeepAlive(const void* owner) const;
- // Clears all should-keep-alive DisplayItemClients. Called after PaintController commits
- // new display items.
- static void endShouldKeepAliveAllClients(const void* owner);
+ void beginShouldKeepAlive(const void* paintController) const;
+ // Clears all should-keep-alive DisplayItemClients of a PaintController. Called after
+ // PaintController commits new display items.
+ static void endShouldKeepAliveAllClients(const void* paintController);
+ static void endShouldKeepAliveAllClients();
#else
virtual ~DisplayItemClient() { }
#endif

Powered by Google App Engine
This is Rietveld 408576698