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

Unified Diff: mojo/shell/static_application_loader.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/static_application_loader.h ('k') | mojo/shell/test_package_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/static_application_loader.cc
diff --git a/mojo/shell/static_application_loader.cc b/mojo/shell/static_application_loader.cc
index b609fcde33572591fb99aa3f63e793d3012c7b59..c7e7f5eb77a04b8fb15fd011da1b0efc78107fa7 100644
--- a/mojo/shell/static_application_loader.cc
+++ b/mojo/shell/static_application_loader.cc
@@ -25,7 +25,7 @@ namespace {
class RunnerThread : public base::SimpleThread {
public:
RunnerThread(const GURL& url,
- InterfaceRequest<Application> request,
+ InterfaceRequest<mojom::Application> request,
scoped_refptr<base::TaskRunner> exit_task_runner,
const base::Closure& exit_callback,
const StaticApplicationLoader::ApplicationFactory& factory)
@@ -44,7 +44,7 @@ class RunnerThread : public base::SimpleThread {
}
private:
- InterfaceRequest<Application> request_;
+ InterfaceRequest<mojom::Application> request_;
scoped_refptr<base::TaskRunner> exit_task_runner_;
base::Closure exit_callback_;
StaticApplicationLoader::ApplicationFactory factory_;
@@ -70,8 +70,9 @@ StaticApplicationLoader::~StaticApplicationLoader() {
StopAppThread();
}
-void StaticApplicationLoader::Load(const GURL& url,
- InterfaceRequest<Application> request) {
+void StaticApplicationLoader::Load(
+ const GURL& url,
+ InterfaceRequest<mojom::Application> request) {
if (thread_)
return;
« no previous file with comments | « mojo/shell/static_application_loader.h ('k') | mojo/shell/test_package_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698