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

Unified Diff: content/public/test/test_mojo_app.cc

Issue 1832813002: Add mojom module suffix in .mojom files in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Tom's comment Created 4 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 | « content/public/test/test_mojo_app.h ('k') | content/public/test/test_mojo_service.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_mojo_app.cc
diff --git a/content/public/test/test_mojo_app.cc b/content/public/test/test_mojo_app.cc
index 253c64fbe8005994cbe5dc2ab35319f43b05a156..fa3884c48ee2198672205057f314c7f6d419a5a2 100644
--- a/content/public/test/test_mojo_app.cc
+++ b/content/public/test/test_mojo_app.cc
@@ -23,12 +23,13 @@ TestMojoApp::~TestMojoApp() {
bool TestMojoApp::AcceptConnection(mojo::Connection* connection) {
requestor_name_ = connection->GetRemoteIdentity().name();
- connection->AddInterface<TestMojoService>(this);
+ connection->AddInterface<mojom::TestMojoService>(this);
return true;
}
-void TestMojoApp::Create(mojo::Connection* connection,
- mojo::InterfaceRequest<TestMojoService> request) {
+void TestMojoApp::Create(
+ mojo::Connection* connection,
+ mojo::InterfaceRequest<mojom::TestMojoService> request) {
DCHECK(!service_binding_.is_bound());
service_binding_.Bind(std::move(request));
}
« no previous file with comments | « content/public/test/test_mojo_app.h ('k') | content/public/test/test_mojo_service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698