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

Unified Diff: trunk/src/chrome/browser/chromeos/file_system_provider/service.h

Issue 242113007: Revert 264780 "[fsp] Add FileSystemURLParser to the file system ..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 8 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: 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_;

Powered by Google App Engine
This is Rietveld 408576698