| Index: cc/stubs/TextStream.h
|
| diff --git a/cc/stubs/TextStream.h b/cc/stubs/TextStream.h
|
| index a9d02d629b29796d522ee58182541c6febc617a7..8ed4fbbd95202fb89e30528ccdb25fced10fc33b 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();
|
| };
|
|
|
| }
|
|
|