Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3921)

Unified Diff: chrome/browser/sync/engine/process_commit_response_command.cc

Issue 429003: Final part of PathString cleanup. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/sync/engine/build_commit_command.cc ('k') | chrome/browser/sync/engine/syncapi.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/engine/process_commit_response_command.cc
===================================================================
--- chrome/browser/sync/engine/process_commit_response_command.cc (revision 32749)
+++ chrome/browser/sync/engine/process_commit_response_command.cc (working copy)
@@ -5,6 +5,7 @@
#include "chrome/browser/sync/engine/process_commit_response_command.h"
#include <set>
+#include <string>
#include <vector>
#include "base/basictypes.h"
@@ -21,6 +22,7 @@
using syncable::Entry;
using std::set;
+using std::string;
using std::vector;
using syncable::BASE_VERSION;
@@ -343,7 +345,7 @@
syncable::WriteTransaction* trans,
const CommitResponse_EntryResponse& server_entry,
syncable::MutableEntry* local_entry) {
- PathString old_name = local_entry->Get(syncable::NON_UNIQUE_NAME);
+ string old_name = local_entry->Get(syncable::NON_UNIQUE_NAME);
const string server_name =
SyncerProtoUtil::NameFromCommitEntryResponse(server_entry);
« no previous file with comments | « chrome/browser/sync/engine/build_commit_command.cc ('k') | chrome/browser/sync/engine/syncapi.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698