Index: ui/cc/stubs/TextStream.h |
diff --git a/ui/cc/stubs/TextStream.h b/ui/cc/stubs/TextStream.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..016288bba148cf3d3222fda5567e9259bb054ae6 |
--- /dev/null |
+++ b/ui/cc/stubs/TextStream.h |
@@ -0,0 +1,19 @@ |
+#ifndef UI_CC_STUBS_TEXTSTREAM_H_ |
+#define UI_CC_STUBS_TEXTSTREAM_H_ |
+ |
+#include <wtf/text/WTFString.h> |
+ |
+namespace WebCore { |
+ |
+class TextStream { |
+public: |
+ TextStream& operator<<(const String&) { return *this; } |
+ TextStream& operator<<(const char*) { return *this; } |
+ TextStream& operator<<(int) { return *this; } |
+ String release() { return ""; } |
+}; |
+ |
+} |
+ |
+#endif // UI_CC_STUBS_TEXTSTREAM_H_ |
+ |