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

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

Issue 8499009: Remove unused MountLibrary (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased on ToT Created 9 years, 1 month 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/mock_mount_library.h ('k') | chrome/browser/chromeos/cros/mount_library.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/mock_mount_library.cc
diff --git a/chrome/browser/chromeos/cros/mock_mount_library.cc b/chrome/browser/chromeos/cros/mock_mount_library.cc
deleted file mode 100644
index 87d03a6de918898175bbb49a9e45a8deea52c3e7..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/cros/mock_mount_library.cc
+++ /dev/null
@@ -1,168 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/chromeos/cros/mock_mount_library.h"
-
-#include "base/message_loop.h"
-#include "base/string_util.h"
-#include "chrome/browser/chromeos/cros/cros_library.h"
-#include "content/public/browser/browser_thread.h"
-
-namespace chromeos {
-
-using content::BrowserThread;
-using testing::_;
-using testing::AnyNumber;
-using testing::Invoke;
-using testing::ReturnRef;
-
-const char* kTestSystemPath = "/this/system/path";
-const char* kTestSystemPathPrefix = "/this/system";
-const char* kTestDevicePath = "/this/device/path";
-const char* kTestMountPath = "/media/foofoo";
-const char* kTestFilePath = "/this/file/path";
-const char* kTestDeviceLabel = "A label";
-const char* kTestDriveLabel = "Another label";
-const char* kTestParentPath = "/this/is/my/parent";
-
-void MockMountLibrary::AddObserverInternal(MountLibrary::Observer* observer) {
- observers_.AddObserver(observer);
-}
-
-void MockMountLibrary::RemoveObserverInternal(
- MountLibrary::Observer* observer) {
- observers_.RemoveObserver(observer);
-}
-
-MockMountLibrary::MockMountLibrary() {
- ON_CALL(*this, AddObserver(_))
- .WillByDefault(Invoke(this, &MockMountLibrary::AddObserverInternal));
- ON_CALL(*this, RemoveObserver(_))
- .WillByDefault(Invoke(this, &MockMountLibrary::RemoveObserverInternal));
- ON_CALL(*this, disks())
- .WillByDefault(Invoke(this, &MockMountLibrary::disksInternal));
-}
-
-MockMountLibrary::~MockMountLibrary() {
-
-}
-
-void MockMountLibrary::FireDeviceInsertEvents() {
-
- scoped_ptr<MountLibrary::Disk> disk1(new MountLibrary::Disk(
- std::string(kTestDevicePath),
- std::string(),
- std::string(kTestSystemPath),
- std::string(kTestFilePath),
- std::string(),
- std::string(kTestDriveLabel),
- std::string(kTestParentPath),
- std::string(kTestSystemPathPrefix),
- FLASH,
- 4294967295U,
- false,
- false,
- true,
- false,
- false));
-
- disks_.clear();
- disks_.insert(std::pair<std::string, MountLibrary::Disk*>(
- std::string(kTestDevicePath), disk1.get()));
-
- // Device Added
- chromeos::MountLibraryEventType evt;
- evt = chromeos::MOUNT_DEVICE_ADDED;
- UpdateDeviceChanged(evt, kTestSystemPath);
-
- // Disk Added
- evt = chromeos::MOUNT_DISK_ADDED;
- UpdateDiskChanged(evt, disk1.get());
-
- // Disk Changed
- scoped_ptr<MountLibrary::Disk> disk2(new MountLibrary::Disk(
- std::string(kTestDevicePath),
- std::string(kTestMountPath),
- std::string(kTestSystemPath),
- std::string(kTestFilePath),
- std::string(kTestDeviceLabel),
- std::string(kTestDriveLabel),
- std::string(kTestParentPath),
- std::string(kTestSystemPathPrefix),
- FLASH,
- 1073741824,
- false,
- false,
- true,
- false,
- false));
- disks_.clear();
- disks_.insert(std::pair<std::string, MountLibrary::Disk*>(
- std::string(kTestDevicePath), disk2.get()));
- evt = chromeos::MOUNT_DISK_CHANGED;
- UpdateDiskChanged(evt, disk2.get());
-}
-
-void MockMountLibrary::FireDeviceRemoveEvents() {
- scoped_ptr<MountLibrary::Disk> disk(new MountLibrary::Disk(
- std::string(kTestDevicePath),
- std::string(kTestMountPath),
- std::string(kTestSystemPath),
- std::string(kTestFilePath),
- std::string(kTestDeviceLabel),
- std::string(kTestDriveLabel),
- std::string(kTestParentPath),
- std::string(kTestSystemPathPrefix),
- FLASH,
- 1073741824,
- false,
- false,
- true,
- false,
- false));
- disks_.clear();
- disks_.insert(std::pair<std::string, MountLibrary::Disk*>(
- std::string(kTestDevicePath), disk.get()));
- UpdateDiskChanged(chromeos::MOUNT_DISK_REMOVED, disk.get());
-}
-
-void MockMountLibrary::SetupDefaultReplies() {
- EXPECT_CALL(*this, AddObserver(_))
- .Times(AnyNumber());
- EXPECT_CALL(*this, RemoveObserver(_))
- .Times(AnyNumber());
- EXPECT_CALL(*this, disks())
- .WillRepeatedly(ReturnRef(disks_));
- EXPECT_CALL(*this, RequestMountInfoRefresh())
- .Times(AnyNumber());
- EXPECT_CALL(*this, MountPath(_, _, _))
- .Times(AnyNumber());
- EXPECT_CALL(*this, UnmountPath(_))
- .Times(AnyNumber());
- EXPECT_CALL(*this, FormatUnmountedDevice(_))
- .Times(AnyNumber());
- EXPECT_CALL(*this, FormatMountedDevice(_))
- .Times(AnyNumber());
- EXPECT_CALL(*this, UnmountDeviceRecursive(_, _, _))
- .Times(AnyNumber());
-}
-
-void MockMountLibrary::UpdateDiskChanged(MountLibraryEventType evt,
- const MountLibrary::Disk* disk) {
- // Make sure we run on UI thread.
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
-
- FOR_EACH_OBSERVER(Observer, observers_, DiskChanged(evt, disk));
-}
-
-
-void MockMountLibrary::UpdateDeviceChanged(MountLibraryEventType evt,
- const std::string& path) {
- // Make sure we run on UI thread.
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
-
- FOR_EACH_OBSERVER(Observer, observers_, DeviceChanged(evt, path));
-}
-
-} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/cros/mock_mount_library.h ('k') | chrome/browser/chromeos/cros/mount_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698