diff options
Diffstat (limited to 'webkit/glue/web_io_operators.cc')
-rw-r--r-- | webkit/glue/web_io_operators.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/web_io_operators.cc b/webkit/glue/web_io_operators.cc index c053863..b3be0df 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) { |