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

Unified Diff: chrome/browser/storage_monitor/storage_monitor_unittest.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
Index: chrome/browser/storage_monitor/storage_monitor_unittest.cc
diff --git a/chrome/browser/storage_monitor/storage_monitor_unittest.cc b/chrome/browser/storage_monitor/storage_monitor_unittest.cc
index f4164522c39cecdde81b3fed75932896d774b92b..1b5de12f1cd17db4a075b1167e86732df1583a01 100644
--- a/chrome/browser/storage_monitor/storage_monitor_unittest.cc
+++ b/chrome/browser/storage_monitor/storage_monitor_unittest.cc
@@ -12,7 +12,7 @@
namespace chrome {
TEST(StorageMonitorTest, DeviceAttachDetachNotifications) {
- MessageLoop message_loop;
+ base::MessageLoop message_loop;
const string16 kDeviceName = ASCIIToUTF16("media device");
const std::string kDeviceId1 = "1";
const std::string kDeviceId2 = "2";
@@ -59,14 +59,14 @@ TEST(StorageMonitorTest, DeviceAttachDetachNotifications) {
}
TEST(StorageMonitorTest, GetAttachedStorageEmpty) {
- MessageLoop message_loop;
+ base::MessageLoop message_loop;
test::TestStorageMonitor monitor;
std::vector<StorageInfo> devices = monitor.GetAttachedStorage();
EXPECT_EQ(0U, devices.size());
}
TEST(StorageMonitorTest, GetRemovableStorageAttachDetach) {
- MessageLoop message_loop;
+ base::MessageLoop message_loop;
test::TestStorageMonitor monitor;
const std::string kDeviceId1 = "42";
const string16 kDeviceName1 = ASCIIToUTF16("test");

Powered by Google App Engine
This is Rietveld 408576698