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

Unified Diff: chrome/test/sync/engine/test_syncable_utils.h

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
Index: chrome/test/sync/engine/test_syncable_utils.h
===================================================================
--- chrome/test/sync/engine/test_syncable_utils.h (revision 32749)
+++ chrome/test/sync/engine/test_syncable_utils.h (working copy)
@@ -8,6 +8,8 @@
#ifndef CHROME_TEST_SYNC_ENGINE_TEST_SYNCABLE_UTILS_H_
#define CHROME_TEST_SYNC_ENGINE_TEST_SYNCABLE_UTILS_H_
+#include <string>
+
#include "chrome/browser/sync/syncable/syncable.h"
namespace syncable {
@@ -20,18 +22,18 @@
// rely on uniqueness inside of folders.
int CountEntriesWithName(BaseTransaction* rtrans,
const syncable::Id& parent_id,
- const PathString& name);
+ const std::string& name);
// Get the first entry ID with name in a parent. The entry *must* exist.
Id GetFirstEntryWithName(BaseTransaction* rtrans,
const syncable::Id& parent_id,
- const PathString& name);
+ const std::string& name);
// Assert that there's only one entry by this name in this parent.
// Return the Id.
Id GetOnlyEntryWithName(BaseTransaction* rtrans,
const syncable::Id& parent_id,
- const PathString& name);
+ const std::string& name);
} // namespace syncable
Property changes on: chrome\test\sync\engine\test_syncable_utils.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/test/sync/engine/test_directory_setter_upper.cc ('k') | chrome/test/sync/engine/test_syncable_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698