| Index: remoting/client/chromoting_client_runtime.h
|
| diff --git a/remoting/client/chromoting_client_runtime.h b/remoting/client/chromoting_client_runtime.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..422f214a0e7391d05a3c8988a1506805ba247898
|
| --- /dev/null
|
| +++ b/remoting/client/chromoting_client_runtime.h
|
| @@ -0,0 +1,27 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef REMOTING_CLIENT_CHROMOTING_CLIENT_RUNTIME_H_
|
| +#define REMOTING_CLIENT_CHROMOTING_CLIENT_RUNTIME_H_
|
| +
|
| +#include "base/macros.h"
|
| +#include "base/memory/scoped_ptr.h"
|
| +#include "net/url_request/url_request_context_getter.h"
|
| +#include "remoting/base/auto_thread.h"
|
| +
|
| +// Houses the global resources on which the Chromoting components run
|
| +// (e.g. message loops and task runners).
|
| +namespace remoting {
|
| +
|
| +class ChromotingClientRuntime {
|
| + public:
|
| + scoped_refptr<AutoThreadTaskRunner> network_task_runner();
|
| + scoped_refptr<AutoThreadTaskRunner> display_task_runner();
|
| + scoped_refptr<AutoThreadTaskRunner> file_task_runner();
|
| + scoped_refptr<net::URLRequestContextGetter> url_requester();
|
| +};
|
| +
|
| +} // namespace remoting
|
| +
|
| +#endif // REMOTING_CLIENT_CHROMOTING_CLIENT_RUNTIME_H_
|
|
|