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

Unified Diff: webkit/browser/blob/blob_storage_context_unittest.cc

Issue 16092013: Use base::MessageLoop in more files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again, sigh Created 7 years, 7 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 | « ui/surface/accelerated_surface_win.cc ('k') | webkit/browser/fileapi/transient_file_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/blob/blob_storage_context_unittest.cc
diff --git a/webkit/browser/blob/blob_storage_context_unittest.cc b/webkit/browser/blob/blob_storage_context_unittest.cc
index e462b952a90ddfdbe3030b637b50869bacdc3505..ef24bdcb68a430f6d6cab236f2f788c879aeea48 100644
--- a/webkit/browser/blob/blob_storage_context_unittest.cc
+++ b/webkit/browser/blob/blob_storage_context_unittest.cc
@@ -28,7 +28,7 @@ void SetupBasicBlob(BlobStorageHost* host, const std::string& id) {
TEST(BlobStorageContextTest, IncrementDecrementRef) {
BlobStorageContext context;
BlobStorageHost host(&context);
- MessageLoop fake_io_message_loop;
+ base::MessageLoop fake_io_message_loop;
// Build up a basic blob.
const std::string kId("id");
@@ -58,7 +58,7 @@ TEST(BlobStorageContextTest, IncrementDecrementRef) {
TEST(BlobStorageContextTest, BlobDataHandle) {
BlobStorageContext context;
BlobStorageHost host(&context);
- MessageLoop fake_io_message_loop;
+ base::MessageLoop fake_io_message_loop;
// Build up a basic blob.
const std::string kId("id");
@@ -89,7 +89,7 @@ TEST(BlobStorageContextTest, CompoundBlobs) {
const std::string kId2("id2");
const std::string kId2Prime("id2.prime");
- MessageLoop fake_io_message_loop;
+ base::MessageLoop fake_io_message_loop;
// Setup a set of blob data for testing.
base::Time time1, time2;
@@ -134,7 +134,7 @@ TEST(BlobStorageContextTest, CompoundBlobs) {
TEST(BlobStorageContextTest, PublicBlobUrls) {
BlobStorageContext context;
BlobStorageHost host(&context);
- MessageLoop fake_io_message_loop;
+ base::MessageLoop fake_io_message_loop;
// Build up a basic blob.
const std::string kId("id");
@@ -166,7 +166,7 @@ TEST(BlobStorageContextTest, PublicBlobUrls) {
TEST(BlobStorageContextTest, HostCleanup) {
BlobStorageContext context;
scoped_ptr<BlobStorageHost> host(new BlobStorageHost(&context));
- MessageLoop fake_io_message_loop;
+ base::MessageLoop fake_io_message_loop;
// Build up a basic blob and register a url
const std::string kId("id");
@@ -185,7 +185,7 @@ TEST(BlobStorageContextTest, HostCleanup) {
TEST(BlobStorageContextTest, EarlyContextDeletion) {
scoped_ptr<BlobStorageContext> context(new BlobStorageContext);
BlobStorageHost host(context.get());
- MessageLoop fake_io_message_loop;
+ base::MessageLoop fake_io_message_loop;
// Deleting the context should not induce crashes.
context.reset();
« no previous file with comments | « ui/surface/accelerated_surface_win.cc ('k') | webkit/browser/fileapi/transient_file_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698