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

Unified Diff: chrome/browser/sync/syncable/directory_backing_store.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/browser/sync/syncable/directory_backing_store.h
===================================================================
--- chrome/browser/sync/syncable/directory_backing_store.h (revision 32749)
+++ chrome/browser/sync/syncable/directory_backing_store.h (working copy)
@@ -6,6 +6,7 @@
#define CHROME_BROWSER_SYNC_SYNCABLE_DIRECTORY_BACKING_STORE_H_
#include <set>
+#include <string>
#include "base/file_path.h"
#include "chrome/browser/sync/syncable/dir_open_result.h"
@@ -45,7 +46,7 @@
// thread that "uses" the DBS is the thread that destroys it.
class DirectoryBackingStore {
public:
- DirectoryBackingStore(const PathString& dir_name,
+ DirectoryBackingStore(const std::string& dir_name,
const FilePath& backing_filepath);
virtual ~DirectoryBackingStore();
@@ -113,7 +114,7 @@
sqlite3* load_dbhandle_;
sqlite3* save_dbhandle_;
- PathString dir_name_;
+ std::string dir_name_;
FilePath backing_filepath_;
DISALLOW_COPY_AND_ASSIGN(DirectoryBackingStore);
« no previous file with comments | « chrome/browser/sync/protocol/service_constants.h ('k') | chrome/browser/sync/syncable/directory_backing_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698