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

Unified Diff: chrome/browser/chromeos/drive/file_system/operation_observer.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months 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/chromeos/drive/file_system/operation_observer.h
diff --git a/chrome/browser/chromeos/drive/file_system/operation_observer.h b/chrome/browser/chromeos/drive/file_system/operation_observer.h
index 3c73f53e523ac4ec5b4387dcd600e4c454cf94e0..bfa43332ed75daf93c57e518d01e838fb4613575 100644
--- a/chrome/browser/chromeos/drive/file_system/operation_observer.h
+++ b/chrome/browser/chromeos/drive/file_system/operation_observer.h
@@ -5,7 +5,9 @@
#ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_OPERATION_OBSERVER_H_
#define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_OPERATION_OBSERVER_H_
+namespace base {
class FilePath;
+}
namespace drive {
namespace file_system {
@@ -17,7 +19,7 @@ class OperationObserver {
// |directory_path| is a virtual directory path representing the
// changed directory.
virtual void OnDirectoryChangedByOperation(
- const FilePath& directory_path) = 0;
+ const base::FilePath& directory_path) = 0;
};
} // namespace file_system

Powered by Google App Engine
This is Rietveld 408576698