summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sessions/session_backend.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/sessions/session_backend.h')
-rw-r--r--chrome/browser/sessions/session_backend.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/sessions/session_backend.h b/chrome/browser/sessions/session_backend.h
index c5e79e2..ca1411f 100644
--- a/chrome/browser/sessions/session_backend.h
+++ b/chrome/browser/sessions/session_backend.h
@@ -47,7 +47,7 @@ class SessionBackend : public base::RefCountedThreadSafe<SessionBackend> {
// indicates which service is using this backend. |type| is used to determine
// the name of the files to use as well as for logging.
SessionBackend(BaseSessionService::SessionType type,
- const FilePath& path_to_dir);
+ const base::FilePath& path_to_dir);
// Moves the current file to the last file, and recreates the current file.
//
@@ -105,7 +105,7 @@ class SessionBackend : public base::RefCountedThreadSafe<SessionBackend> {
// Opens the current file and writes the header. On success a handle to
// the file is returned.
- net::FileStream* OpenAndWriteHeader(const FilePath& path);
+ net::FileStream* OpenAndWriteHeader(const base::FilePath& path);
// Appends the specified commands to the specified file.
bool AppendCommandsToFile(net::FileStream* file,
@@ -114,13 +114,13 @@ class SessionBackend : public base::RefCountedThreadSafe<SessionBackend> {
const BaseSessionService::SessionType type_;
// Returns the path to the last file.
- FilePath GetLastSessionPath();
+ base::FilePath GetLastSessionPath();
// Returns the path to the current file.
- FilePath GetCurrentSessionPath();
+ base::FilePath GetCurrentSessionPath();
// Directory files are relative to.
- const FilePath path_to_dir_;
+ const base::FilePath path_to_dir_;
// Whether the previous target file is valid.
bool last_session_valid_;