OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "mash/app_driver/app_driver.h" | 5 #include "mash/app_driver/app_driver.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 const auto iter = options.find(static_cast<Accelerator>(id)); | 123 const auto iter = options.find(static_cast<Accelerator>(id)); |
124 DCHECK(iter != options.end()); | 124 DCHECK(iter != options.end()); |
125 const LaunchOptions& entry = iter->second; | 125 const LaunchOptions& entry = iter->second; |
126 LaunchablePtr launchable; | 126 LaunchablePtr launchable; |
127 connector()->ConnectToInterface(entry.app, &launchable); | 127 connector()->ConnectToInterface(entry.app, &launchable); |
128 launchable->Launch(entry.option, entry.mode); | 128 launchable->Launch(entry.option, entry.mode); |
129 } | 129 } |
130 | 130 |
131 void AppDriver::AddAccelerators() { | 131 void AppDriver::AddAccelerators() { |
132 connector()->ConnectToInterface("service:catalog", &catalog_); | 132 connector()->ConnectToInterface("service:catalog", &catalog_); |
133 catalog_->GetEntriesProvidingClass( | 133 catalog_->GetEntriesProvidingCapability( |
134 "mus:window_manager", base::Bind(&AppDriver::OnAvailableCatalogEntries, | 134 "mus:window_manager", base::Bind(&AppDriver::OnAvailableCatalogEntries, |
135 weak_factory_.GetWeakPtr())); | 135 weak_factory_.GetWeakPtr())); |
136 } | 136 } |
137 | 137 |
138 } // namespace app_driver | 138 } // namespace app_driver |
139 } // namespace mash | 139 } // namespace mash |
OLD | NEW |