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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/README.md

Issue 1401363003: Rename DisplayItemList to PaintController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/README.md
diff --git a/third_party/WebKit/Source/platform/graphics/paint/README.md b/third_party/WebKit/Source/platform/graphics/paint/README.md
index 2c9e765a7a74197797824769c838b9276f8b9a40..24918af015480ca92d8573d53131884f7be8880f 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/README.md
+++ b/third_party/WebKit/Source/platform/graphics/paint/README.md
@@ -93,7 +93,7 @@ list.
***
Generally, clients of this code should use stack-allocated recorder classes to
-emit display items to a `DisplayItemList` (using `GraphicsContext`).
+emit display items to a `PaintController` (using `GraphicsContext`).
### Standalone display items
@@ -126,10 +126,10 @@ them in SPv2.
## Display item list
Callers use `GraphicsContext` (via its drawing methods, and its
-`displayItemList()` accessor) and scoped recorder classes, which emit items into
-a `DisplayItemList`.
+`paintController()` accessor) and scoped recorder classes, which emit items into
+a `PaintController`.
-`DisplayItemList` is responsible for producing the paint artifact. It contains
+`PaintController` is responsible for producing the paint artifact. It contains
the *current* paint artifact, which is always complete (i.e. it has no
`CachedDisplayItem` objects), and *new* display items and paint chunks, which
are added as content is painted.

Powered by Google App Engine
This is Rietveld 408576698