Index: trunk/src/chrome/browser/chromeos/file_system_provider/service.h |
=================================================================== |
--- trunk/src/chrome/browser/chromeos/file_system_provider/service.h (revision 264799) |
+++ trunk/src/chrome/browser/chromeos/file_system_provider/service.h (working copy) |
@@ -10,7 +10,6 @@ |
#include <vector> |
#include "base/files/file.h" |
-#include "base/files/file_path.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/memory/weak_ptr.h" |
#include "base/observer_list.h" |
@@ -75,11 +74,6 @@ |
const std::string& extension_id, |
int file_system_id); |
- // Returns a provided file system attached to the the passed |
- // |mount_point_name|. If not found, then returns NULL. |
- ProvidedFileSystemInterface* GetProvidedFileSystem( |
- const std::string& mount_point_name); |
- |
// Adds and removes observers. |
void AddObserver(Observer* observer); |
void RemoveObserver(Observer* observer); |
@@ -92,7 +86,6 @@ |
private: |
typedef std::map<int, ProvidedFileSystemInterface*> ProvidedFileSystemMap; |
- typedef std::map<std::string, int> MountPointNameToIdMap; |
// Called when the providing extension accepts or refuses a unmount request. |
// If |error| is equal to FILE_OK, then the request is accepted. |
@@ -103,7 +96,6 @@ |
FileSystemFactoryCallback file_system_factory_; |
ObserverList<Observer> observers_; |
ProvidedFileSystemMap file_system_map_; // Owns pointers. |
- MountPointNameToIdMap mount_point_name_to_id_map_; |
int next_id_; |
base::WeakPtrFactory<Service> weak_ptr_factory_; |