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

Unified Diff: cc/stubs/TextStream.h

Issue 10828381: libcc and webkit_compositor targets + stubs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Slightly better scripts and updated README Created 8 years, 4 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
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_
+
« no previous file with comments | « cc/stubs/SkiaUtils.h ('k') | cc/stubs/TilingData.h » ('j') | cc/test/RunAllTests.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698