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

Side by Side Diff: webkit/glue/web_io_operators.h

Issue 8896024: Reland r113261 rebased after revert of r113249. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/http/mock_http_cache.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "webkit/glue/webkit_glue_export.h"
12 12
13 namespace WebKit { 13 namespace WebKit {
14 14
15 #if defined(WCHAR_T_IS_UTF32) 15 #if defined(WCHAR_T_IS_UTF32)
16 class WebString; 16 class WebString;
17 std::ostream& operator<<(std::ostream& out, const WebString& s); 17 WEBKIT_GLUE_EXPORT std::ostream& operator<<(std::ostream& out,
18 const WebString& s);
18 #endif // defined(WCHAR_T_IS_UTF32) 19 #endif // defined(WCHAR_T_IS_UTF32)
19 20
20 struct WebPoint; 21 struct WebPoint;
21 WEBKIT_GLUE_EXPORT std::ostream& operator<<(std::ostream& out, 22 WEBKIT_GLUE_EXPORT std::ostream& operator<<(std::ostream& out,
22 const WebPoint& p); 23 const WebPoint& p);
23 24
24 struct WebRect; 25 struct WebRect;
25 std::ostream& operator<<(std::ostream& out, const WebRect& p); 26 std::ostream& operator<<(std::ostream& out, const WebRect& p);
26 27
27 } // namespace WebKit 28 } // namespace WebKit
28 29
29 #endif // WEBKIT_GLUE_WEB_IO_OPERATORS_H_ 30 #endif // WEBKIT_GLUE_WEB_IO_OPERATORS_H_
OLDNEW
« no previous file with comments | « net/http/mock_http_cache.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698