| Index: Source/platform/text/TextStream.h
|
| diff --git a/Source/platform/text/TextStream.h b/Source/platform/text/TextStream.h
|
| index fe4d84739130b537772a5107ff2f3db40a7a06fa..a3e3d9e16816b9bdba5310f62a5e9ad95a3df8f5 100644
|
| --- a/Source/platform/text/TextStream.h
|
| +++ b/Source/platform/text/TextStream.h
|
| @@ -39,6 +39,10 @@ class IntRect;
|
| class FloatPoint;
|
| class FloatRect;
|
| class FloatSize;
|
| +class LayoutUnit;
|
| +class LayoutPoint;
|
| +class LayoutRect;
|
| +class LayoutSize;
|
|
|
| class PLATFORM_EXPORT TextStream {
|
| public:
|
| @@ -72,6 +76,10 @@ PLATFORM_EXPORT TextStream& operator<<(TextStream&, const IntRect&);
|
| PLATFORM_EXPORT TextStream& operator<<(TextStream&, const FloatPoint&);
|
| PLATFORM_EXPORT TextStream& operator<<(TextStream&, const FloatSize&);
|
| PLATFORM_EXPORT TextStream& operator<<(TextStream&, const FloatRect&);
|
| +PLATFORM_EXPORT TextStream& operator<<(TextStream&, const LayoutUnit&);
|
| +PLATFORM_EXPORT TextStream& operator<<(TextStream&, const LayoutPoint&);
|
| +PLATFORM_EXPORT TextStream& operator<<(TextStream&, const LayoutRect&);
|
| +PLATFORM_EXPORT TextStream& operator<<(TextStream&, const LayoutSize&);
|
|
|
| PLATFORM_EXPORT void writeIndent(TextStream&, int indent);
|
|
|
|
|