| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CC_STUBS_TEXTSTREAM_H_ | |
| 6 #define CC_STUBS_TEXTSTREAM_H_ | |
| 7 | |
| 8 #include <wtf/text/WTFString.h> | |
| 9 | |
| 10 namespace WebCore { | |
| 11 | |
| 12 // These symbols are all defined inside WebCore. | |
| 13 class TextStream { | |
| 14 public: | |
| 15 TextStream& operator<<(const String&); | |
| 16 TextStream& operator<<(const char*); | |
| 17 TextStream& operator<<(int); | |
| 18 String release(); | |
| 19 }; | |
| 20 | |
| 21 } | |
| 22 | |
| 23 #endif // CC_STUBS_TEXTSTREAM_H_ | |
| 24 | |
| OLD | NEW |