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

Unified Diff: extensions/test/test_content_utility_client.cc

Issue 2699663003: Convert utility process extension ParseUpdate IPC to mojo (Closed)
Patch Set: Extensions review comments. Created 3 years, 9 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 | « extensions/test/test_content_utility_client.h ('k') | extensions/utility/utility_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/test/test_content_utility_client.cc
diff --git a/extensions/test/test_content_utility_client.cc b/extensions/test/test_content_utility_client.cc
index 56aee9fc627487bf6f2120727c18843408db228c..fd01822a7e906c83cd9b856111daf7ebf337cbaa 100644
--- a/extensions/test/test_content_utility_client.cc
+++ b/extensions/test/test_content_utility_client.cc
@@ -11,16 +11,12 @@ TestContentUtilityClient::TestContentUtilityClient() = default;
TestContentUtilityClient::~TestContentUtilityClient() = default;
void TestContentUtilityClient::UtilityThreadStarted() {
- UtilityHandler::UtilityThreadStarted();
+ utility_handler::UtilityThreadStarted();
}
void TestContentUtilityClient::ExposeInterfacesToBrowser(
service_manager::InterfaceRegistry* registry) {
- UtilityHandler::ExposeInterfacesToBrowser(registry, false);
-}
-
-bool TestContentUtilityClient::OnMessageReceived(const IPC::Message& message) {
- return utility_handler_.OnMessageReceived(message);
+ utility_handler::ExposeInterfacesToBrowser(registry, false);
}
} // namespace extensions
« no previous file with comments | « extensions/test/test_content_utility_client.h ('k') | extensions/utility/utility_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698