OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_GLUE_WEB_IO_OPERATORS_H_ | 5 #ifndef WEBKIT_GLUE_WEB_IO_OPERATORS_H_ |
6 #define WEBKIT_GLUE_WEB_IO_OPERATORS_H_ | 6 #define WEBKIT_GLUE_WEB_IO_OPERATORS_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "webkit/glue/webkit_glue_export.h" |
11 | 12 |
12 namespace WebKit { | 13 namespace WebKit { |
13 | 14 |
14 #if defined(WCHAR_T_IS_UTF32) | 15 #if defined(WCHAR_T_IS_UTF32) |
15 class WebString; | 16 class WebString; |
16 std::ostream& operator<<(std::ostream& out, const WebString& s); | 17 std::ostream& operator<<(std::ostream& out, const WebString& s); |
17 #endif // defined(WCHAR_T_IS_UTF32) | 18 #endif // defined(WCHAR_T_IS_UTF32) |
18 | 19 |
19 struct WebPoint; | 20 struct WebPoint; |
20 std::ostream& operator<<(std::ostream& out, const WebPoint& p); | 21 WEBKIT_GLUE_EXPORT std::ostream& operator<<(std::ostream& out, |
| 22 const WebPoint& p); |
21 | 23 |
22 struct WebRect; | 24 struct WebRect; |
23 std::ostream& operator<<(std::ostream& out, const WebRect& p); | 25 std::ostream& operator<<(std::ostream& out, const WebRect& p); |
24 | 26 |
25 } // namespace WebKit | 27 } // namespace WebKit |
26 | 28 |
27 #endif // WEBKIT_GLUE_WEB_IO_OPERATORS_H_ | 29 #endif // WEBKIT_GLUE_WEB_IO_OPERATORS_H_ |
OLD | NEW |