Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |