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
3// found in the LICENSE file.
4
5#ifndef WEBKIT_GLUE_WEB_IO_OPERATORS_H_
6#define WEBKIT_GLUE_WEB_IO_OPERATORS_H_
7
8#include <iosfwd>
9
10#include "build/build_config.h"
11
12namespace WebKit {
13
14#if defined(WCHAR_T_IS_UTF32)
15class WebString;
16std::ostream& operator<<(std::ostream& out, const WebString& s);
17#endif  // defined(WCHAR_T_IS_UTF32)
18
19struct WebPoint;
20std::ostream& operator<<(std::ostream& out, const WebPoint& p);
21
22struct WebRect;
23std::ostream& operator<<(std::ostream& out, const WebRect& p);
24
25}  // namespace WebKit
26
27#endif  // WEBKIT_GLUE_WEB_IO_OPERATORS_H_
28