summaryrefslogtreecommitdiffstats
path: root/cc/stubs
diff options
context:
space:
mode:
authorjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-10 19:15:27 +0000
committerjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-10 19:15:27 +0000
commit515e8d239945244e961c2a78e165f56ee1ccf858 (patch)
treeb8932af64861df25a283dc08bde611789580f8d3 /cc/stubs
parent2dd3dc1948312256f1321c0ba0186acffda12fcd (diff)
downloadchromium_src-515e8d239945244e961c2a78e165f56ee1ccf858.zip
chromium_src-515e8d239945244e961c2a78e165f56ee1ccf858.tar.gz
chromium_src-515e8d239945244e961c2a78e165f56ee1ccf858.tar.bz2
Use std::string instead of WTF::String / TextStream
BUG= Review URL: https://chromiumcodereview.appspot.com/10900021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155792 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/stubs')
-rw-r--r--cc/stubs/TextStream.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/cc/stubs/TextStream.h b/cc/stubs/TextStream.h
deleted file mode 100644
index 8ed4fbb..0000000
--- a/cc/stubs/TextStream.h
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CC_STUBS_TEXTSTREAM_H_
-#define CC_STUBS_TEXTSTREAM_H_
-
-#include <wtf/text/WTFString.h>
-
-namespace WebCore {
-
-// These symbols are all defined inside WebCore.
-class TextStream {
-public:
- TextStream& operator<<(const String&);
- TextStream& operator<<(const char*);
- TextStream& operator<<(int);
- String release();
-};
-
-}
-
-#endif // CC_STUBS_TEXTSTREAM_H_
-