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

Unified Diff: content/browser/mojo_shell_browsertest.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
Index: content/browser/mojo_shell_browsertest.cc
diff --git a/content/browser/mojo_shell_browsertest.cc b/content/browser/mojo_shell_browsertest.cc
index dfe8a06ca603f75efcf8215a08a79d2e692a617e..9777e624052530cca790f31bcb0f9fbcbeff7468 100644
--- a/content/browser/mojo_shell_browsertest.cc
+++ b/content/browser/mojo_shell_browsertest.cc
@@ -46,7 +46,7 @@ class MojoShellTest : public ContentBrowserTest {
IN_PROC_BROWSER_TEST_F(MojoShellTest, TestBrowserConnection) {
auto test_app = MojoAppConnection::Create(
GetUserId(), kInProcessTestMojoAppName, kBrowserMojoAppUrl);
- TestMojoServicePtr test_service;
+ mojom::TestMojoServicePtr test_service;
test_app->GetInterface(&test_service);
base::RunLoop run_loop;
@@ -60,7 +60,7 @@ IN_PROC_BROWSER_TEST_F(MojoShellTest, TestUtilityConnection) {
// a TestMojoApp at |kTestMojoAppUrl|.
auto test_app = MojoAppConnection::Create(GetUserId(), kTestMojoAppUrl,
kBrowserMojoAppUrl);
- TestMojoServicePtr test_service;
+ mojom::TestMojoServicePtr test_service;
test_app->GetInterface(&test_service);
base::RunLoop run_loop;
« no previous file with comments | « content/browser/media/cdm/browser_cdm_manager.cc ('k') | content/browser/permissions/permission_service_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698