| 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/geolocation/geolocation_feature.h" |
| 15 #include "blimp/client/core/session/client_network_components.h" | 16 #include "blimp/client/core/session/client_network_components.h" |
| 16 #include "blimp/client/core/session/network_event_observer.h" | 17 #include "blimp/client/core/session/network_event_observer.h" |
| 17 #include "blimp/client/public/blimp_client_context.h" | 18 #include "blimp/client/public/blimp_client_context.h" |
| 18 #include "blimp/client/public/contents/blimp_contents.h" | 19 #include "blimp/client/public/contents/blimp_contents.h" |
| 19 #include "blimp/client/public/session/assignment.h" | 20 #include "blimp/client/public/session/assignment.h" |
| 20 #include "blimp/net/thread_pipe_manager.h" | 21 #include "blimp/net/thread_pipe_manager.h" |
| 21 #include "url/gurl.h" | 22 #include "url/gurl.h" |
| 22 | 23 |
| 23 namespace blimp { | 24 namespace blimp { |
| 24 namespace client { | 25 namespace client { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 52 // Returns the URL to use for connections to the assigner. Used to construct | 53 // Returns the URL to use for connections to the assigner. Used to construct |
| 53 // the AssignmentSource. | 54 // the AssignmentSource. |
| 54 virtual GURL GetAssignerURL(); | 55 virtual GURL GetAssignerURL(); |
| 55 | 56 |
| 56 private: | 57 private: |
| 57 // The AssignmentCallback for when an assignment is ready. This will trigger | 58 // The AssignmentCallback for when an assignment is ready. This will trigger |
| 58 // a connection to the engine. | 59 // a connection to the engine. |
| 59 virtual void ConnectWithAssignment(AssignmentRequestResult result, | 60 virtual void ConnectWithAssignment(AssignmentRequestResult result, |
| 60 const Assignment& assignment); | 61 const Assignment& assignment); |
| 61 | 62 |
| 63 void RegisterFeatures(); |
| 64 |
| 62 // Provides functionality from the embedder. | 65 // Provides functionality from the embedder. |
| 63 BlimpClientContextDelegate* delegate_ = nullptr; | 66 BlimpClientContextDelegate* delegate_ = nullptr; |
| 64 | 67 |
| 65 // The task runner to use for IO operations. | 68 // The task runner to use for IO operations. |
| 66 scoped_refptr<base::SingleThreadTaskRunner> io_thread_task_runner_; | 69 scoped_refptr<base::SingleThreadTaskRunner> io_thread_task_runner_; |
| 67 | 70 |
| 68 // The task runner to use for file operations. | 71 // The task runner to use for file operations. |
| 69 scoped_refptr<base::SingleThreadTaskRunner> file_thread_task_runner_; | 72 scoped_refptr<base::SingleThreadTaskRunner> file_thread_task_runner_; |
| 70 | 73 |
| 71 // The AssignmentSource is used when the user of BlimpClientContextImpl calls | 74 // The AssignmentSource is used when the user of BlimpClientContextImpl calls |
| 72 // Connect() to get a valid assignment and later connect to the engine. | 75 // Connect() to get a valid assignment and later connect to the engine. |
| 73 std::unique_ptr<AssignmentSource> assignment_source_; | 76 std::unique_ptr<AssignmentSource> assignment_source_; |
| 74 | 77 |
| 75 std::unique_ptr<BlimpContentsManager> blimp_contents_manager_; | 78 std::unique_ptr<BlimpContentsManager> blimp_contents_manager_; |
| 76 | 79 |
| 80 std::unique_ptr<GeolocationFeature> geolocation_feature_; |
| 81 |
| 77 // Container struct for network components. | 82 // Container struct for network components. |
| 78 // Must be deleted on the IO thread. | 83 // Must be deleted on the IO thread. |
| 79 std::unique_ptr<ClientNetworkComponents> net_components_; | 84 std::unique_ptr<ClientNetworkComponents> net_components_; |
| 80 | 85 |
| 81 std::unique_ptr<ThreadPipeManager> thread_pipe_manager_; | 86 std::unique_ptr<ThreadPipeManager> thread_pipe_manager_; |
| 82 | 87 |
| 83 base::WeakPtrFactory<BlimpClientContextImpl> weak_factory_; | 88 base::WeakPtrFactory<BlimpClientContextImpl> weak_factory_; |
| 84 | 89 |
| 85 DISALLOW_COPY_AND_ASSIGN(BlimpClientContextImpl); | 90 DISALLOW_COPY_AND_ASSIGN(BlimpClientContextImpl); |
| 86 }; | 91 }; |
| 87 | 92 |
| 88 } // namespace client | 93 } // namespace client |
| 89 } // namespace blimp | 94 } // namespace blimp |
| 90 | 95 |
| 91 #endif // BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_IMPL_H_ | 96 #endif // BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_IMPL_H_ |
| OLD | NEW |