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

Unified Diff: webkit/glue/web_io_operators.cc

Issue 8044015: ui/gfx: Add ToString() function to Point class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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
« no previous file with comments | « ui/gfx/rect.cc ('k') | webkit/plugins/npapi/webplugin_delegate_impl_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/web_io_operators.cc
diff --git a/webkit/glue/web_io_operators.cc b/webkit/glue/web_io_operators.cc
index c0538634894140c3937be1a68fc2febd3264ee78..b3be0df40b9de7409e4c344ca7bb2852a0f603af 100644
--- a/webkit/glue/web_io_operators.cc
+++ b/webkit/glue/web_io_operators.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -23,7 +23,7 @@ std::ostream& operator<<(std::ostream& out, const WebString& s) {
#endif // defined(WCHAR_T_IS_UTF32)
std::ostream& operator<<(std::ostream& out, const WebPoint& p) {
- return out << static_cast<gfx::Point>(p);
+ return out << static_cast<gfx::Point>(p).ToString();
}
std::ostream& operator<<(std::ostream& out, const WebRect& p) {
« no previous file with comments | « ui/gfx/rect.cc ('k') | webkit/plugins/npapi/webplugin_delegate_impl_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698