Index: cc/stubs/TextStream.h |
diff --git a/cc/stubs/TextStream.h b/cc/stubs/TextStream.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..899e9b3777a75125ae7879ec14cf905494986148 |
--- /dev/null |
+++ b/cc/stubs/TextStream.h |
@@ -0,0 +1,19 @@ |
+#ifndef CC_STUBS_TEXTSTREAM_H_ |
+#define 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 // CC_STUBS_TEXTSTREAM_H_ |
+ |