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

Unified Diff: components/download/internal/test/mock_model_client.h

Issue 2895953004: Add initial Controller to DownloadService (Closed)
Patch Set: Moved stats out Created 3 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
Index: components/download/internal/test/mock_model_client.h
diff --git a/components/download/internal/test/mock_model_client.h b/components/download/internal/test/mock_model_client.h
index 2b82f0cd4be2b2914d9175634b72a29f3c6a18d1..790aef58486945f4f0364e5be78b4cecbc3c407e 100644
--- a/components/download/internal/test/mock_model_client.h
+++ b/components/download/internal/test/mock_model_client.h
@@ -19,8 +19,8 @@ class MockModelClient : public Model::Client {
~MockModelClient() override;
// Model::Client implementation.
- MOCK_METHOD1(OnInitialized, void(bool));
- MOCK_METHOD1(OnDestroyed, void(bool));
+ MOCK_METHOD1(OnModelReady, void(bool));
+ MOCK_METHOD1(OnModelDestroyed, void(bool));
MOCK_METHOD3(OnItemAdded, void(bool, DownloadClient, const std::string&));
MOCK_METHOD3(OnItemUpdated, void(bool, DownloadClient, const std::string&));
MOCK_METHOD3(OnItemRemoved, void(bool, DownloadClient, const std::string&));

Powered by Google App Engine
This is Rietveld 408576698