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

Side by Side Diff: shell/android/intent_manager_factory.h

Issue 1061313003: Introduce intent manager. (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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef SHELL_ANDROID_INTENT_MANAGER_FACTORY_H_
6 #define SHELL_ANDROID_INTENT_MANAGER_FACTORY_H_
7
8 #include "mojo/public/cpp/application/interface_factory.h"
9 #include "services/android/intent.mojom.h"
10 #include "shell/android/intent_manager_impl.h"
11
12 namespace mojo {
13 namespace shell {
14 class IntentManagerFactory : public InterfaceFactory<intent::IntentManager> {
15 private:
16 // From InterfaceFactory:
17 void Create(ApplicationConnection* connection,
18 InterfaceRequest<intent::IntentManager> request) override;
19
20 IntentManagerImpl intent_manager_;
21 };
22 } // namespace shell
23 } // namespace mojo
24
25 #endif // SHELL_ANDROID_INTENT_MANAGER_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698