summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/syncable/syncable_id.cc
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-25 22:49:02 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-25 22:49:02 +0000
commitca318f968ab42e5ac1f83912973b1a857ee8f9e9 (patch)
tree49187e58562cd8a68714b3cc1350bdff1ca47817 /chrome/browser/sync/syncable/syncable_id.cc
parentcd91aff2f0ced8ac9027e35f5ee82400d7fa5298 (diff)
downloadchromium_src-ca318f968ab42e5ac1f83912973b1a857ee8f9e9.zip
chromium_src-ca318f968ab42e5ac1f83912973b1a857ee8f9e9.tar.gz
chromium_src-ca318f968ab42e5ac1f83912973b1a857ee8f9e9.tar.bz2
[Sync] Remove now-obsolete FastDump class
Fix uses of bare 'string' to be 'std::string'. BUG=55816 TEST=None Review URL: http://codereview.chromium.org/6304021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72559 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/syncable/syncable_id.cc')
-rw-r--r--chrome/browser/sync/syncable/syncable_id.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/browser/sync/syncable/syncable_id.cc b/chrome/browser/sync/syncable/syncable_id.cc
index 60cf8c9..766289b 100644
--- a/chrome/browser/sync/syncable/syncable_id.cc
+++ b/chrome/browser/sync/syncable/syncable_id.cc
@@ -19,12 +19,6 @@ ostream& operator<<(ostream& out, const Id& id) {
return out;
}
-using browser_sync::FastDump;
-FastDump& operator<<(FastDump& dump, const Id& id) {
- dump.out_->sputn(id.s_.data(), id.s_.size());
- return dump;
-}
-
string Id::GetServerId() const {
// Currently root is the string "0". We need to decide on a true value.
// "" would be convenient here, as the IsRoot call would not be needed.