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

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

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 #include "shell/android/intent_manager_factory.h"
6
7 #include "base/logging.h"
ppi 2015/04/07 15:42:14 is this used here?
qsr 2015/04/08 10:04:14 Removed
8 #include "mojo/public/cpp/bindings/strong_binding.h"
ppi 2015/04/07 15:42:14 is this used here?
qsr 2015/04/08 10:04:14 Removed
9
10 namespace mojo {
11 namespace shell {
12
13 void IntentManagerFactory::Create(
14 ApplicationConnection* connection,
15 InterfaceRequest<intent::IntentManager> request) {
16 intent_manager_.Bind(request.Pass());
17 }
18
19 } // namespace shell
20 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698