diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-03 21:44:39 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-03 21:44:39 +0000 |
commit | 74e3af7013e7fb3ae9a9cbd98a7fcaf8469b1b0d (patch) | |
tree | 27015ae94476e29886a69397af7bc32f1dff5ad2 /webkit/glue/web_io_operators.h | |
parent | cc1f11583bd3b45f4f8853c617cacb8d7fc58eb8 (diff) | |
download | chromium_src-74e3af7013e7fb3ae9a9cbd98a7fcaf8469b1b0d.zip chromium_src-74e3af7013e7fb3ae9a9cbd98a7fcaf8469b1b0d.tar.gz chromium_src-74e3af7013e7fb3ae9a9cbd98a7fcaf8469b1b0d.tar.bz2 |
clang/mac: Fix most problems in unittest targets in webkit.gyp
This does to WebPoint/gfx::Point what we did to WebString/string16 last friday and fixes a bunch of other small issues.
Also fix two tiny issues in the base unit tests target.
BUG=None
TEST=None
TBR=hans
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61343 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/web_io_operators.h')
-rw-r--r-- | webkit/glue/web_io_operators.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/webkit/glue/web_io_operators.h b/webkit/glue/web_io_operators.h index ba10ee0..fed5108 100644 --- a/webkit/glue/web_io_operators.h +++ b/webkit/glue/web_io_operators.h @@ -9,11 +9,14 @@ #include "build/build_config.h" -#if defined(WCHAR_T_IS_UTF32) namespace WebKit { +#if defined(WCHAR_T_IS_UTF32) class WebString; std::ostream& operator<<(std::ostream& out, const WebString& s); -} // namespace WebKit #endif // defined(WCHAR_T_IS_UTF32) +struct WebPoint; +std::ostream& operator<<(std::ostream& out, const WebPoint& p); +} // namespace WebKit + #endif // WEBKIT_GLUE_WEB_IO_OPERATORS_H_ |