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

Unified Diff: ui/cc/stubs/TextStream.h

Issue 10701016: Initial import attempt, just to play with. Many things disabled/removed (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « ui/cc/stubs/ScrollbarThemeClient.h ('k') | ui/cc/stubs/TraceEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
+
« no previous file with comments | « ui/cc/stubs/ScrollbarThemeClient.h ('k') | ui/cc/stubs/TraceEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698