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

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

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/mount_library.h ('k') | chrome/browser/chromeos/cros/network_library.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/mount_library.cc
diff --git a/chrome/browser/chromeos/cros/mount_library.cc b/chrome/browser/chromeos/cros/mount_library.cc
index e99edf28ea84352b6675204e4365338ce3464c32..16cec4aec0513073da1cc54a71dd8c128103763f 100644
--- a/chrome/browser/chromeos/cros/mount_library.cc
+++ b/chrome/browser/chromeos/cros/mount_library.cc
@@ -9,97 +9,140 @@
#include "chrome/browser/chrome_thread.h"
#include "chrome/browser/chromeos/cros/cros_library.h"
-// Allows InvokeLater without adding refcounting. This class is a Singleton and
-// won't be deleted until it's last InvokeLater is run.
-DISABLE_RUNNABLE_METHOD_REFCOUNT(chromeos::MountLibraryImpl);
-
namespace chromeos {
-void MountLibraryImpl::AddObserver(Observer* observer) {
- observers_.AddObserver(observer);
-}
+class MountLibraryImpl : public MountLibrary {
+ public:
+ MountLibraryImpl() : mount_status_connection_(NULL) {
+ if (CrosLibrary::Get()->EnsureLoaded()) {
+ Init();
+ } else {
+ LOG(ERROR) << "Cros Library has not been loaded";
+ }
+ }
-void MountLibraryImpl::RemoveObserver(Observer* observer) {
- observers_.RemoveObserver(observer);
-}
+ ~MountLibraryImpl() {
+ if (mount_status_connection_) {
+ DisconnectMountStatus(mount_status_connection_);
+ }
+ }
-bool MountLibraryImpl::MountPath(const char* device_path) {
- return MountDevicePath(device_path);
-}
+ void AddObserver(Observer* observer) {
+ observers_.AddObserver(observer);
+ }
-void MountLibraryImpl::ParseDisks(const MountStatus& status) {
- disks_.clear();
- for (int i = 0; i < status.size; i++) {
- std::string path;
- std::string mountpath;
- std::string systempath;
- bool parent;
- bool hasmedia;
- if (status.disks[i].path != NULL) {
- path = status.disks[i].path;
- }
- if (status.disks[i].mountpath != NULL) {
- mountpath = status.disks[i].mountpath;
- }
- if (status.disks[i].systempath != NULL) {
- systempath = status.disks[i].systempath;
+ void RemoveObserver(Observer* observer) {
+ observers_.RemoveObserver(observer);
+ }
+
+ bool MountPath(const char* device_path) {
+ return MountDevicePath(device_path);
+ }
+
+ const DiskVector& disks() const { return disks_; }
+
+ private:
+ void ParseDisks(const MountStatus& status) {
+ disks_.clear();
+ for (int i = 0; i < status.size; i++) {
+ std::string path;
+ std::string mountpath;
+ std::string systempath;
+ bool parent;
+ bool hasmedia;
+ if (status.disks[i].path != NULL) {
+ path = status.disks[i].path;
+ }
+ if (status.disks[i].mountpath != NULL) {
+ mountpath = status.disks[i].mountpath;
+ }
+ if (status.disks[i].systempath != NULL) {
+ systempath = status.disks[i].systempath;
+ }
+ parent = status.disks[i].isparent;
+ hasmedia = status.disks[i].hasmedia;
+ disks_.push_back(Disk(path,
+ mountpath,
+ systempath,
+ parent,
+ hasmedia));
}
- parent = status.disks[i].isparent;
- hasmedia = status.disks[i].hasmedia;
- disks_.push_back(Disk(path,
- mountpath,
- systempath,
- parent,
- hasmedia));
}
-}
-MountLibraryImpl::MountLibraryImpl() : mount_status_connection_(NULL) {
- if (CrosLibrary::Get()->EnsureLoaded()) {
- Init();
- } else {
- LOG(ERROR) << "Cros Library has not been loaded";
+ static void MountStatusChangedHandler(void* object,
+ const MountStatus& status,
+ MountEventType evt,
+ const char* path) {
+ MountLibraryImpl* mount = static_cast<MountLibraryImpl*>(object);
+ std::string devicepath = path;
+ mount->ParseDisks(status);
+ mount->UpdateMountStatus(status, evt, devicepath);
}
-}
-MountLibraryImpl::~MountLibraryImpl() {
- if (mount_status_connection_) {
- DisconnectMountStatus(mount_status_connection_);
+ void Init() {
+ // Getting the monitor status so that the daemon starts up.
+ MountStatus* mount = RetrieveMountInformation();
+ if (!mount) {
+ LOG(ERROR) << "Failed to retrieve mount information";
+ return;
+ }
+ ParseDisks(*mount);
+ FreeMountStatus(mount);
+
+ mount_status_connection_ = MonitorMountStatus(
+ &MountStatusChangedHandler, this);
}
-}
-// static
-void MountLibraryImpl::MountStatusChangedHandler(void* object,
- const MountStatus& status,
- MountEventType evt,
- const char* path) {
- MountLibraryImpl* mount = static_cast<MountLibraryImpl*>(object);
- std::string devicepath = path;
- mount->ParseDisks(status);
- mount->UpdateMountStatus(status, evt, devicepath);
-}
+ void UpdateMountStatus(const MountStatus& status,
+ MountEventType evt,
+ const std::string& path) {
+ // Make sure we run on UI thread.
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
-void MountLibraryImpl::Init() {
- // Getting the monitor status so that the daemon starts up.
- MountStatus* mount = RetrieveMountInformation();
- if (!mount) {
- LOG(ERROR) << "Failed to retrieve mount information";
- return;
+ FOR_EACH_OBSERVER(
+ Observer, observers_, MountChanged(this, evt, path));
}
- ParseDisks(*mount);
- FreeMountStatus(mount);
+ ObserverList<Observer> observers_;
- mount_status_connection_ = MonitorMountStatus(
- &MountStatusChangedHandler, this);
-}
+ // 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);
+};
-void MountLibraryImpl::UpdateMountStatus(const MountStatus& status,
- MountEventType evt,
- const std::string& path) {
- // Make sure we run on UI thread.
- DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI));
+class MountLibraryStubImpl : public MountLibrary {
+ public:
+ MountLibraryStubImpl() {}
+ virtual ~MountLibraryStubImpl() {}
- FOR_EACH_OBSERVER(Observer, observers_, MountChanged(this, evt, path));
+ // 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) { return false; }
+
+ private:
+ // The list of disks found.
+ DiskVector disks_;
+
+ DISALLOW_COPY_AND_ASSIGN(MountLibraryStubImpl);
+};
+
+// static
+MountLibrary* MountLibrary::GetImpl(bool stub) {
+ if (stub)
+ return new MountLibraryStubImpl();
+ else
+ return new MountLibraryImpl();
}
} // namespace chromeos
+
+// Allows InvokeLater without adding refcounting. This class is a Singleton and
+// won't be deleted until it's last InvokeLater is run.
+DISABLE_RUNNABLE_METHOD_REFCOUNT(chromeos::MountLibraryImpl);
+
« no previous file with comments | « chrome/browser/chromeos/cros/mount_library.h ('k') | chrome/browser/chromeos/cros/network_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698