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

Unified Diff: shell/application_manager/application_loader.h

Issue 1067173003: Remove mojo:: part of mojo::shell:: nested namespace in //shell. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 8 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: shell/application_manager/application_loader.h
diff --git a/shell/application_manager/application_loader.h b/shell/application_manager/application_loader.h
index 11feb381b6745b3d3e198c92d42e9210e802fbb5..8e875d514ba8617f9b9d02b8a36f740b7c9f64d2 100644
--- a/shell/application_manager/application_loader.h
+++ b/shell/application_manager/application_loader.h
@@ -12,8 +12,8 @@
#include "url/gurl.h"
namespace mojo {
-
class Application;
+} // namespace mojo
namespace shell {
@@ -25,14 +25,14 @@ class ApplicationLoader {
public:
virtual ~ApplicationLoader() {}
- virtual void Load(const GURL& url,
- InterfaceRequest<Application> application_request) = 0;
+ virtual void Load(
+ const GURL& url,
+ mojo::InterfaceRequest<mojo::Application> application_request) = 0;
protected:
ApplicationLoader() {}
};
} // namespace shell
-} // namespace mojo
#endif // SHELL_APPLICATION_MANAGER_APPLICATION_LOADER_H_

Powered by Google App Engine
This is Rietveld 408576698