diff options
author | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-17 03:59:35 +0000 |
---|---|---|
committer | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-17 03:59:35 +0000 |
commit | 17d0ba461daac2c49a3b3ebc299f94dc87c91393 (patch) | |
tree | 79b5073ecff56192b881b688e1114102c194bbcd /chrome/browser/chromeos/drive/drive_file_system_interface.h | |
parent | adbe1348fc14fc502ca0dc7de3002d37398a07b9 (diff) | |
download | chromium_src-17d0ba461daac2c49a3b3ebc299f94dc87c91393.zip chromium_src-17d0ba461daac2c49a3b3ebc299f94dc87c91393.tar.gz chromium_src-17d0ba461daac2c49a3b3ebc299f94dc87c91393.tar.bz2 |
drive: Introduce DriveSystemServiceObserver
Move DriveFileSystem::NotifyFileSystemMounted() and
NotifyFileSystemToBeUnmounted() to DriveSystemServiceObserver
in favor of less things to have in DriveFileSystem
BUG=231788
TEST=none
Review URL: https://codereview.chromium.org/13866050
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194529 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/drive/drive_file_system_interface.h')
-rw-r--r-- | chrome/browser/chromeos/drive/drive_file_system_interface.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/browser/chromeos/drive/drive_file_system_interface.h b/chrome/browser/chromeos/drive/drive_file_system_interface.h index add7df3..7ae18dd 100644 --- a/chrome/browser/chromeos/drive/drive_file_system_interface.h +++ b/chrome/browser/chromeos/drive/drive_file_system_interface.h @@ -155,12 +155,6 @@ class DriveFileSystemInterface { virtual void AddObserver(DriveFileSystemObserver* observer) = 0; virtual void RemoveObserver(DriveFileSystemObserver* observer) = 0; - // Notifies the file system was just mounted. - virtual void NotifyFileSystemMounted() = 0; - - // Notifies the file system is going to be unmounted. - virtual void NotifyFileSystemToBeUnmounted() = 0; - // Checks for updates on the server. virtual void CheckForUpdates() = 0; |