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

Side by Side Diff: content/browser/appcache/appcache_quota_client_unittest.cc

Issue 1170623003: Revert "content: Remove use of MessageLoopProxy and deprecated MessageLoop APIs" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <map> 5 #include <map>
6 #include <set> 6 #include <set>
7 7
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/message_loop/message_loop_proxy.h"
9 #include "base/run_loop.h" 10 #include "base/run_loop.h"
10 #include "content/browser/appcache/appcache_quota_client.h" 11 #include "content/browser/appcache/appcache_quota_client.h"
11 #include "content/browser/appcache/mock_appcache_service.h" 12 #include "content/browser/appcache/mock_appcache_service.h"
12 #include "net/base/net_errors.h" 13 #include "net/base/net_errors.h"
13 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
14 15
15 namespace content { 16 namespace content {
16 17
17 // Declared to shorten the line lengths. 18 // Declared to shorten the line lengths.
18 static const storage::StorageType kTemp = storage::kStorageTypeTemporary; 19 static const storage::StorageType kTemp = storage::kStorageTypeTemporary;
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 // A real completion callback from the service should 415 // A real completion callback from the service should
415 // be dropped if it comes in after NotifyAppCacheDestroyed. 416 // be dropped if it comes in after NotifyAppCacheDestroyed.
416 base::RunLoop().RunUntilIdle(); 417 base::RunLoop().RunUntilIdle();
417 EXPECT_EQ(1, num_delete_origins_completions_); 418 EXPECT_EQ(1, num_delete_origins_completions_);
418 EXPECT_EQ(storage::kQuotaErrorAbort, delete_status_); 419 EXPECT_EQ(storage::kQuotaErrorAbort, delete_status_);
419 420
420 Call_OnQuotaManagerDestroyed(client); 421 Call_OnQuotaManagerDestroyed(client);
421 } 422 }
422 423
423 } // namespace content 424 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/appcache/appcache_group.cc ('k') | content/browser/appcache/appcache_request_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698