| Index: webkit/fileapi/external_mount_points.h | 
| diff --git a/webkit/fileapi/external_mount_points.h b/webkit/fileapi/external_mount_points.h | 
| index fe8d4d08779fdc74321939f131975117d968abec..f2d8e29198480e83156eea87c8c3fa28e4f45dd7 100644 | 
| --- a/webkit/fileapi/external_mount_points.h | 
| +++ b/webkit/fileapi/external_mount_points.h | 
| @@ -18,6 +18,7 @@ | 
| class FilePath; | 
|  | 
| namespace fileapi { | 
| +class FileSystemURL; | 
| class RemoteFileSystemProxyInterface; | 
| } | 
|  | 
| @@ -69,6 +70,7 @@ class WEBKIT_STORAGE_EXPORT ExternalMountPoints | 
| const FilePath& path); | 
|  | 
| // MountPoints overrides. | 
| +  virtual bool HandlesFileSystemMountType(FileSystemType type) const OVERRIDE; | 
| virtual bool RevokeFileSystem(const std::string& mount_name) OVERRIDE; | 
| virtual bool GetRegisteredPath(const std::string& mount_name, | 
| FilePath* path) const OVERRIDE; | 
| @@ -76,6 +78,11 @@ class WEBKIT_STORAGE_EXPORT ExternalMountPoints | 
| std::string* mount_name, | 
| FileSystemType* type, | 
| FilePath* path) const OVERRIDE; | 
| +  virtual FileSystemURL CrackURL(const GURL& url) const OVERRIDE; | 
| +  virtual FileSystemURL CreateCrackedFileSystemURL( | 
| +      const GURL& origin, | 
| +      FileSystemType type, | 
| +      const FilePath& path) const OVERRIDE; | 
|  | 
| // Retrieves the remote file system proxy for the registered file system. | 
| // Returns NULL if there is no file system with the given name, or if the file | 
|  |