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

Unified Diff: webkit/port/platform/graphics/skia/public/VectorCanvas_unittest.cpp

Issue 11244: Move PlatformCanvas and PlatformDevice from base/gfx to webkit/port. I left h... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 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: webkit/port/platform/graphics/skia/public/VectorCanvas_unittest.cpp
===================================================================
--- webkit/port/platform/graphics/skia/public/VectorCanvas_unittest.cpp (revision 0)
+++ webkit/port/platform/graphics/skia/public/VectorCanvas_unittest.cpp (working copy)
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "base/gfx/vector_canvas.h"
+#include "VectorCanvas.h"
#include <vector>
@@ -355,7 +355,8 @@
// Streams an image.
inline std::ostream& operator<<(std::ostream& out, const Image& image) {
- return out << "Image(" << image.size() << ", " << image.row_length() << ")";
+ return out << "Image(" << image.size().width() << ", "
+ << image.size().height() << ", " << image.row_length() << ")";
}
// Runs simultaneously the same drawing commands on VectorCanvas and
Property changes on: webkit\port\platform\graphics\skia\public\VectorCanvas_unittest.cpp
___________________________________________________________________
Added: svn:mergeinfo
Merged /branches/chrome_webkit_merge_branch/base/gfx/vector_canvas_unittest.cc:r69-2775
« no previous file with comments | « webkit/port/platform/graphics/skia/public/VectorCanvas.cpp ('k') | webkit/port/platform/graphics/skia/public/VectorDevice.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698