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

Unified Diff: chrome/browser/system_monitor/removable_device_notifications_window_win.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/system_monitor/removable_device_notifications_window_win.h
diff --git a/chrome/browser/system_monitor/removable_device_notifications_window_win.h b/chrome/browser/system_monitor/removable_device_notifications_window_win.h
index a2afd31889438ee872e3602f16886b8d97522624..deb4bc54e58ba9d88fb2dcefef8de0c9c724cecc 100644
--- a/chrome/browser/system_monitor/removable_device_notifications_window_win.h
+++ b/chrome/browser/system_monitor/removable_device_notifications_window_win.h
@@ -10,7 +10,9 @@
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/system_monitor/removable_storage_notifications.h"
+namespace base {
class FilePath;
+}
namespace chrome {
@@ -35,7 +37,7 @@ class RemovableDeviceNotificationsWindowWin
// RemovableStorageNotifications:
virtual bool GetDeviceInfoForPath(
- const FilePath& path,
+ const base::FilePath& path,
StorageInfo* device_info) const OVERRIDE;
virtual uint64 GetStorageSize(const std::string& location) const OVERRIDE;
virtual bool GetMTPStorageInfoFromDeviceId(
@@ -57,7 +59,7 @@ class RemovableDeviceNotificationsWindowWin
// Gets the removable storage information given a |device_path|. On success,
// returns true and fills in |device_location|, |unique_id|, |name| and
// |removable|.
- bool GetDeviceInfo(const FilePath& device_path,
+ bool GetDeviceInfo(const base::FilePath& device_path,
string16* device_location,
std::string* unique_id,
string16* name,

Powered by Google App Engine
This is Rietveld 408576698