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

Unified Diff: chrome/browser/chromeos/cros/mount_library.h

Issue 3076029: Allow chrome for cros to be started with a username / password (Closed)
Patch Set: Only declare StubLogin on cros builds Created 10 years, 4 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
« no previous file with comments | « chrome/browser/chromeos/cros/login_library.cc ('k') | chrome/browser/chromeos/cros/mount_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/mount_library.h
diff --git a/chrome/browser/chromeos/cros/mount_library.h b/chrome/browser/chromeos/cros/mount_library.h
index 3e99eedc37326bf845245f5c6cf82c574b0d565e..be8660e693609a9d92369ecb2dd9b6689bf5f14c 100644
--- a/chrome/browser/chromeos/cros/mount_library.h
+++ b/chrome/browser/chromeos/cros/mount_library.h
@@ -59,51 +59,9 @@ class MountLibrary {
virtual void RemoveObserver(Observer* observer) = 0;
virtual const DiskVector& disks() const = 0;
virtual bool MountPath(const char* device_path) = 0;
-};
-
-// This class handles the interaction with the ChromeOS mount library APIs.
-// Classes can add themselves as observers. Users can get an instance of this
-// library class like this: MountLibrary::Get().
-class MountLibraryImpl : public MountLibrary {
- public:
- MountLibraryImpl();
- virtual ~MountLibraryImpl();
-
- // MountLibrary overrides.
- virtual void AddObserver(Observer* observer);
- virtual void RemoveObserver(Observer* observer);
- virtual const DiskVector& disks() const { return disks_; }
- virtual bool MountPath(const char* device_path);
- private:
- void ParseDisks(const MountStatus& status);
-
- // This method is called when there's a change in mount status.
- // This method is called the UI Thread.
- static void MountStatusChangedHandler(void* object,
- const MountStatus& status,
- MountEventType evt,
- const char* path);
-
- // This methods starts the monitoring of mount changes.
- // It should be called on the UI Thread.
- void Init();
-
- // Called by the handler to update the mount status.
- // This will notify all the Observers.
- void UpdateMountStatus(const MountStatus& status,
- MountEventType evt,
- const std::string& path);
-
- ObserverList<Observer> observers_;
-
- // A reference to the mount api, to allow callbacks when the mount
- // status changes.
- MountStatusConnection mount_status_connection_;
-
- // The list of disks found.
- DiskVector disks_;
- DISALLOW_COPY_AND_ASSIGN(MountLibraryImpl);
+ // Get library implementation.
+ static MountLibrary* GetImpl(bool stub);
};
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/cros/login_library.cc ('k') | chrome/browser/chromeos/cros/mount_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698