Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_COMMON_MOJO_CURRENT_THREAD_LOADER_H_ | |
| 6 #define CONTENT_COMMON_MOJO_CURRENT_THREAD_LOADER_H_ | |
| 7 | |
| 8 #include <vector> | |
| 9 | |
| 10 #include "base/callback.h" | |
| 11 #include "base/macros.h" | |
| 12 #include "mojo/shell/loader.h" | |
| 13 #include "mojo/shell/public/cpp/shell_client.h" | |
| 14 #include "mojo/shell/public/cpp/shell_connection.h" | |
| 15 | |
| 16 namespace content { | |
| 17 | |
| 18 // A Loader which loads a single type of app from a mojo::ShellClientFactory on | |
| 19 // the current thread. | |
| 20 class CurrentThreadLoader : public mojo::shell::Loader { | |
| 21 public: | |
| 22 using ApplicationFactory = base::Callback<scoped_ptr<mojo::ShellClient>()>; | |
| 23 | |
| 24 explicit CurrentThreadLoader(const ApplicationFactory& factory); | |
| 25 ~CurrentThreadLoader() override; | |
| 26 | |
| 27 // mojo::shell::Loader: | |
| 28 void Load(const std::string& name, | |
| 29 mojo::shell::mojom::ShellClientRequest request) override; | |
| 30 | |
| 31 private: | |
| 32 // The factory used to create new instances of the application delegate. This | |
| 33 // is called exactly once since all | |
|
michaeln
2016/03/17 22:35:42
since all what?
| |
| 34 ApplicationFactory factory_; | |
| 35 | |
| 36 // Our shared shell client, passed to each connection. | |
| 37 scoped_ptr<mojo::ShellClient> shell_client_; | |
| 38 | |
| 39 std::vector<scoped_ptr<mojo::ShellConnection>> connections_; | |
| 40 | |
| 41 DISALLOW_COPY_AND_ASSIGN(CurrentThreadLoader); | |
| 42 }; | |
| 43 | |
| 44 } // namespace content | |
| 45 | |
| 46 #endif // CONTENT_COMMON_MOJO_CURRENT_THREAD_LOADER_H_ | |
| OLD | NEW |