| 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 #ifndef BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_IMPL_H_ | 5 #ifndef BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_IMPL_H_ |
| 6 #define BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_IMPL_H_ | 6 #define BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_IMPL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/single_thread_task_runner.h" | 13 #include "base/single_thread_task_runner.h" |
| 14 #include "base/threading/thread.h" | 14 #include "base/threading/thread.h" |
| 15 #include "blimp/client/core/session/client_network_components.h" | 15 #include "blimp/client/core/session/client_network_components.h" |
| 16 #include "blimp/client/core/session/network_event_observer.h" | 16 #include "blimp/client/core/session/network_event_observer.h" |
| 17 #include "blimp/client/public/blimp_client_context.h" | 17 #include "blimp/client/public/blimp_client_context.h" |
| 18 #include "blimp/client/public/contents/blimp_contents.h" | 18 #include "blimp/client/public/contents/blimp_contents.h" |
| 19 #include "blimp/client/public/session/assignment.h" | 19 #include "blimp/client/public/session/assignment.h" |
| 20 #include "blimp/net/thread_pipe_manager.h" | 20 #include "blimp/net/thread_pipe_manager.h" |
| 21 #include "url/gurl.h" | 21 #include "url/gurl.h" |
| 22 | 22 |
| 23 namespace blimp { | 23 namespace blimp { |
| 24 namespace client { | 24 namespace client { |
| 25 | 25 |
| 26 class BlimpContentsManager; | 26 class BlimpContentsManager; |
| 27 class RenderWidgetFeature; |
| 27 | 28 |
| 28 // BlimpClientContextImpl is the implementation of the main context-class for | 29 // BlimpClientContextImpl is the implementation of the main context-class for |
| 29 // the blimp client. | 30 // the blimp client. |
| 30 class BlimpClientContextImpl : public BlimpClientContext, | 31 class BlimpClientContextImpl : public BlimpClientContext, |
| 31 public NetworkEventObserver { | 32 public NetworkEventObserver { |
| 32 public: | 33 public: |
| 33 // The |io_thread_task_runner| must be the task runner to use for IO | 34 // The |io_thread_task_runner| must be the task runner to use for IO |
| 34 // operations. | 35 // operations. |
| 35 // The |file_thread_task_runner| must be the task runner to use for file | 36 // The |file_thread_task_runner| must be the task runner to use for file |
| 36 // operations. | 37 // operations. |
| (...skipping 28 matching lines...) Expand all Loading... |
| 65 // The task runner to use for IO operations. | 66 // The task runner to use for IO operations. |
| 66 scoped_refptr<base::SingleThreadTaskRunner> io_thread_task_runner_; | 67 scoped_refptr<base::SingleThreadTaskRunner> io_thread_task_runner_; |
| 67 | 68 |
| 68 // The task runner to use for file operations. | 69 // The task runner to use for file operations. |
| 69 scoped_refptr<base::SingleThreadTaskRunner> file_thread_task_runner_; | 70 scoped_refptr<base::SingleThreadTaskRunner> file_thread_task_runner_; |
| 70 | 71 |
| 71 // The AssignmentSource is used when the user of BlimpClientContextImpl calls | 72 // The AssignmentSource is used when the user of BlimpClientContextImpl calls |
| 72 // Connect() to get a valid assignment and later connect to the engine. | 73 // Connect() to get a valid assignment and later connect to the engine. |
| 73 std::unique_ptr<AssignmentSource> assignment_source_; | 74 std::unique_ptr<AssignmentSource> assignment_source_; |
| 74 | 75 |
| 76 std::unique_ptr<RenderWidgetFeature> render_widget_feature_; |
| 77 |
| 75 std::unique_ptr<BlimpContentsManager> blimp_contents_manager_; | 78 std::unique_ptr<BlimpContentsManager> blimp_contents_manager_; |
| 76 | 79 |
| 77 // Container struct for network components. | 80 // Container struct for network components. |
| 78 // Must be deleted on the IO thread. | 81 // Must be deleted on the IO thread. |
| 79 std::unique_ptr<ClientNetworkComponents> net_components_; | 82 std::unique_ptr<ClientNetworkComponents> net_components_; |
| 80 | 83 |
| 81 std::unique_ptr<ThreadPipeManager> thread_pipe_manager_; | 84 std::unique_ptr<ThreadPipeManager> thread_pipe_manager_; |
| 82 | 85 |
| 83 base::WeakPtrFactory<BlimpClientContextImpl> weak_factory_; | 86 base::WeakPtrFactory<BlimpClientContextImpl> weak_factory_; |
| 84 | 87 |
| 85 DISALLOW_COPY_AND_ASSIGN(BlimpClientContextImpl); | 88 DISALLOW_COPY_AND_ASSIGN(BlimpClientContextImpl); |
| 86 }; | 89 }; |
| 87 | 90 |
| 88 } // namespace client | 91 } // namespace client |
| 89 } // namespace blimp | 92 } // namespace blimp |
| 90 | 93 |
| 91 #endif // BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_IMPL_H_ | 94 #endif // BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_IMPL_H_ |
| OLD | NEW |