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

Unified Diff: Source/platform/text/TextStream.h

Issue 1180573003: Add option to dump line box tree when dumping layout tree. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: pointers->references Created 5 years, 6 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/layout/LayoutTreeAsText.cpp ('k') | Source/platform/text/TextStream.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/core/layout/LayoutTreeAsText.cpp ('k') | Source/platform/text/TextStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698