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

Unified Diff: mojo/shell/application_manager_unittest.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_apptest_driver.cc ('k') | mojo/shell/application_package_apptest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/application_manager_unittest.cc
diff --git a/mojo/shell/application_manager_unittest.cc b/mojo/shell/application_manager_unittest.cc
index cc52d6585eb7bb6961411deeee4fe4dba0904589..94b92c66c0bac88204047ea5e538ab135bc80474 100644
--- a/mojo/shell/application_manager_unittest.cc
+++ b/mojo/shell/application_manager_unittest.cc
@@ -114,7 +114,7 @@ class TestApplicationLoader : public ApplicationLoader,
private:
// ApplicationLoader implementation.
void Load(const GURL& url,
- InterfaceRequest<Application> application_request) override {
+ InterfaceRequest<mojom::Application> application_request) override {
++num_loads_;
test_app_.reset(new ApplicationImpl(this, std::move(application_request)));
}
@@ -144,7 +144,8 @@ class ClosingApplicationLoader : public ApplicationLoader {
private:
// ApplicationLoader implementation.
void Load(const GURL& url,
- InterfaceRequest<Application> application_request) override {}
+ InterfaceRequest<mojom::Application> application_request) override {
+ }
};
class TesterContext {
@@ -345,7 +346,7 @@ class Tester : public ApplicationDelegate,
private:
void Load(const GURL& url,
- InterfaceRequest<Application> application_request) override {
+ InterfaceRequest<mojom::Application> application_request) override {
app_.reset(new ApplicationImpl(this, std::move(application_request)));
}
« no previous file with comments | « mojo/shell/application_manager_apptest_driver.cc ('k') | mojo/shell/application_package_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698