diff options
Diffstat (limited to 'cc/stubs/TextStream.h')
-rw-r--r-- | cc/stubs/TextStream.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cc/stubs/TextStream.h b/cc/stubs/TextStream.h index a9d02d6..8ed4fbb 100644 --- a/cc/stubs/TextStream.h +++ b/cc/stubs/TextStream.h @@ -9,12 +9,13 @@ namespace WebCore { +// These symbols are all defined inside WebCore. class TextStream { public: - TextStream& operator<<(const String&) { return *this; } - TextStream& operator<<(const char*) { return *this; } - TextStream& operator<<(int) { return *this; } - String release() { return ""; } + TextStream& operator<<(const String&); + TextStream& operator<<(const char*); + TextStream& operator<<(int); + String release(); }; } |