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 |