| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "mojo/services/catalog/factory.h" | 5 #include "mojo/services/catalog/factory.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "mojo/services/catalog/catalog.h" | 8 #include "mojo/services/catalog/catalog.h" |
| 9 #include "mojo/shell/public/cpp/connection.h" | 9 #include "services/shell/public/cpp/connection.h" |
| 10 #include "mojo/shell/public/cpp/shell_connection.h" | 10 #include "services/shell/public/cpp/shell_connection.h" |
| 11 | 11 |
| 12 namespace catalog { | 12 namespace catalog { |
| 13 | 13 |
| 14 Factory::Factory(base::TaskRunner* file_task_runner, | 14 Factory::Factory(base::TaskRunner* file_task_runner, |
| 15 scoped_ptr<Store> store, | 15 scoped_ptr<Store> store, |
| 16 ManifestProvider* manifest_provider) | 16 ManifestProvider* manifest_provider) |
| 17 : file_task_runner_(file_task_runner), | 17 : file_task_runner_(file_task_runner), |
| 18 store_(std::move(store)), | 18 store_(std::move(store)), |
| 19 manifest_provider_(manifest_provider), | 19 manifest_provider_(manifest_provider), |
| 20 weak_factory_(this) { | 20 weak_factory_(this) { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 return it->second.get(); | 62 return it->second.get(); |
| 63 | 63 |
| 64 // TODO(beng): There needs to be a way to load the store from different users. | 64 // TODO(beng): There needs to be a way to load the store from different users. |
| 65 Catalog* instance = new Catalog(std::move(store_), file_task_runner_, | 65 Catalog* instance = new Catalog(std::move(store_), file_task_runner_, |
| 66 &system_catalog_, manifest_provider_); | 66 &system_catalog_, manifest_provider_); |
| 67 catalogs_[user_id] = make_scoped_ptr(instance); | 67 catalogs_[user_id] = make_scoped_ptr(instance); |
| 68 return instance; | 68 return instance; |
| 69 } | 69 } |
| 70 | 70 |
| 71 } // namespace catalog | 71 } // namespace catalog |
| OLD | NEW |