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

Unified Diff: mojo/shell/application_manager_apptest.cc

Issue 1679573002: Move shell interfaces into the shell.mojom namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delegate
Patch Set: . Created 4 years, 10 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 | « mojo/shell/application_manager.cc ('k') | mojo/shell/application_manager_apptest_driver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/application_manager_apptest.cc
diff --git a/mojo/shell/application_manager_apptest.cc b/mojo/shell/application_manager_apptest.cc
index aedc2256483b6ab3aeff15fc1c1afbeec429287f..e0abdd5b083c1cdbbe5b35d6fbf9bc665a236021 100644
--- a/mojo/shell/application_manager_apptest.cc
+++ b/mojo/shell/application_manager_apptest.cc
@@ -31,7 +31,7 @@ class ApplicationManagerAppTestDelegate
public CreateInstanceForHandleTest {
public:
ApplicationManagerAppTestDelegate()
- : target_id_(Shell::kInvalidApplicationID),
+ : target_id_(mojom::Shell::kInvalidApplicationID),
binding_(this) {}
~ApplicationManagerAppTestDelegate() override {}
@@ -183,9 +183,9 @@ TEST_F(ApplicationManagerAppTest, CreateInstanceForHandle) {
// mojo:application_manager_apptests)
base::MessageLoop::current()->Run();
- uint32_t remote_id = Shell::kInvalidApplicationID;
+ uint32_t remote_id = mojom::Shell::kInvalidApplicationID;
EXPECT_TRUE(connection->GetRemoteApplicationID(&remote_id));
- EXPECT_NE(Shell::kInvalidApplicationID, remote_id);
+ EXPECT_NE(mojom::Shell::kInvalidApplicationID, remote_id);
// 3. Validate that this test suite's pretty name was consumed from its
// manifest.
« no previous file with comments | « mojo/shell/application_manager.cc ('k') | mojo/shell/application_manager_apptest_driver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698