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

Unified Diff: shell/android/intent_receiver_manager_factory.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/android/intent_receiver_manager_factory.h
diff --git a/shell/android/intent_receiver_manager_factory.h b/shell/android/intent_receiver_manager_factory.h
index 775ce18afcc6b865d9782c00418dd146162979de..f25ee0139bf85b4c6fd6fc6162f0a2907fb47d47 100644
--- a/shell/android/intent_receiver_manager_factory.h
+++ b/shell/android/intent_receiver_manager_factory.h
@@ -9,19 +9,19 @@
#include "services/android/intent_receiver.mojom.h"
#include "shell/android/intent_receiver_manager_impl.h"
-namespace mojo {
namespace shell {
+
class IntentReceiverManagerFactory
- : public InterfaceFactory<intent_receiver::IntentReceiverManager> {
+ : public mojo::InterfaceFactory<intent_receiver::IntentReceiverManager> {
private:
// From InterfaceFactory:
- void Create(ApplicationConnection* connection,
- InterfaceRequest<intent_receiver::IntentReceiverManager> request)
- override;
+ void Create(mojo::ApplicationConnection* connection,
+ mojo::InterfaceRequest<intent_receiver::IntentReceiverManager>
+ request) override;
IntentReceiverManagerImpl intent_manager_;
};
+
} // namespace shell
-} // namespace mojo
#endif // SHELL_ANDROID_INTENT_RECEIVER_MANAGER_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698