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

Unified Diff: sky/engine/platform/graphics/DisplayList.cpp

Issue 1017593005: Add a basic custom painting facility to Sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Add missing files Created 5 years, 9 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: sky/engine/platform/graphics/DisplayList.cpp
diff --git a/sky/engine/platform/graphics/DisplayList.cpp b/sky/engine/platform/graphics/DisplayList.cpp
index 36093966243c9071b516271250f2b46a77fe9d87..87f6b1dc3646ca9a0e9c74d7cd9233950dd81810 100644
--- a/sky/engine/platform/graphics/DisplayList.cpp
+++ b/sky/engine/platform/graphics/DisplayList.cpp
@@ -38,8 +38,7 @@
namespace blink {
-DisplayList::DisplayList(const FloatRect& bounds)
- : m_bounds(bounds)
+DisplayList::DisplayList()
{
}
@@ -47,11 +46,6 @@ DisplayList::~DisplayList()
{
}
-const FloatRect& DisplayList::bounds() const
-{
- return m_bounds;
-}
-
SkPicture* DisplayList::picture() const
{
return m_picture.get();

Powered by Google App Engine
This is Rietveld 408576698