Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(424)

Side by Side Diff: services/ui/common/gpu_service.h

Issue 2197613003: gpu: Introduce GpuChannelEstablishFactory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 SERVICES_UI_COMMON_GPU_SERVICE_H_ 5 #ifndef SERVICES_UI_COMMON_GPU_SERVICE_H_
6 #define SERVICES_UI_COMMON_GPU_SERVICE_H_ 6 #define SERVICES_UI_COMMON_GPU_SERVICE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/single_thread_task_runner.h" 13 #include "base/single_thread_task_runner.h"
14 #include "base/synchronization/lock.h" 14 #include "base/synchronization/lock.h"
15 #include "base/synchronization/waitable_event.h" 15 #include "base/synchronization/waitable_event.h"
16 #include "base/threading/thread.h" 16 #include "base/threading/thread.h"
17 #include "gpu/ipc/client/gpu_channel_host.h" 17 #include "gpu/ipc/client/gpu_channel_host.h"
18 #include "services/ui/common/mojo_gpu_memory_buffer_manager.h" 18 #include "services/ui/common/mojo_gpu_memory_buffer_manager.h"
19 #include "services/ui/common/mus_common_export.h" 19 #include "services/ui/common/mus_common_export.h"
20 #include "services/ui/public/interfaces/gpu_service.mojom.h" 20 #include "services/ui/public/interfaces/gpu_service.mojom.h"
21 21
22 namespace shell { 22 namespace shell {
23 class Connector; 23 class Connector;
24 } 24 }
25 25
26 namespace ui { 26 namespace ui {
27 27
28 class MUS_COMMON_EXPORT GpuService : public gpu::GpuChannelHostFactory { 28 class MUS_COMMON_EXPORT GpuService : public gpu::GpuChannelHostFactory,
29 public gpu::GpuChannelEstablishFactory {
29 public: 30 public:
30 void EstablishGpuChannel(const base::Closure& callback);
31 scoped_refptr<gpu::GpuChannelHost> EstablishGpuChannelSync();
32 scoped_refptr<gpu::GpuChannelHost> GetGpuChannel();
33 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager() const { 31 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager() const {
34 return gpu_memory_buffer_manager_.get(); 32 return gpu_memory_buffer_manager_.get();
35 } 33 }
36 34
37 // The GpuService has to be initialized in the main thread before establishing 35 // The GpuService has to be initialized in the main thread before establishing
38 // the gpu channel. 36 // the gpu channel.
39 static void Initialize(shell::Connector* connector); 37 static void Initialize(shell::Connector* connector);
40 // The GpuService has to be terminated in the main thread. 38 // The GpuService has to be terminated in the main thread.
41 static void Terminate(); 39 static void Terminate();
42 static GpuService* GetInstance(); 40 static GpuService* GetInstance();
43 41
42 // gpu::GpuChannelEstablishFactory:
43 void EstablishGpuChannel(
44 const gpu::GpuChannelEstablishedCallback& callback) override;
45 scoped_refptr<gpu::GpuChannelHost> EstablishGpuChannelSync() override;
46
44 private: 47 private:
45 friend struct base::DefaultSingletonTraits<GpuService>; 48 friend struct base::DefaultSingletonTraits<GpuService>;
46 49
47 explicit GpuService(shell::Connector* connector); 50 explicit GpuService(shell::Connector* connector);
48 ~GpuService() override; 51 ~GpuService() override;
49 52
50 scoped_refptr<gpu::GpuChannelHost> GetGpuChannelLocked(); 53 scoped_refptr<gpu::GpuChannelHost> GetGpuChannelLocked();
51 void EstablishGpuChannelOnMainThread(); 54 void EstablishGpuChannelOnMainThread();
52 void EstablishGpuChannelOnMainThreadSyncLocked(); 55 void EstablishGpuChannelOnMainThreadSyncLocked();
53 void EstablishGpuChannelOnMainThreadDone( 56 void EstablishGpuChannelOnMainThreadDone(
(...skipping 12 matching lines...) Expand all
66 shell::Connector* connector_; 69 shell::Connector* connector_;
67 base::WaitableEvent shutdown_event_; 70 base::WaitableEvent shutdown_event_;
68 base::Thread io_thread_; 71 base::Thread io_thread_;
69 std::unique_ptr<MojoGpuMemoryBufferManager> gpu_memory_buffer_manager_; 72 std::unique_ptr<MojoGpuMemoryBufferManager> gpu_memory_buffer_manager_;
70 73
71 // Lock for |gpu_channel_|, |establish_callbacks_| & |is_establishing_|. 74 // Lock for |gpu_channel_|, |establish_callbacks_| & |is_establishing_|.
72 base::Lock lock_; 75 base::Lock lock_;
73 bool is_establishing_; 76 bool is_establishing_;
74 ui::mojom::GpuServicePtr gpu_service_; 77 ui::mojom::GpuServicePtr gpu_service_;
75 scoped_refptr<gpu::GpuChannelHost> gpu_channel_; 78 scoped_refptr<gpu::GpuChannelHost> gpu_channel_;
76 std::vector<base::Closure> establish_callbacks_; 79 std::vector<gpu::GpuChannelEstablishedCallback> establish_callbacks_;
77 base::ConditionVariable establishing_condition_; 80 base::ConditionVariable establishing_condition_;
78 81
79 DISALLOW_COPY_AND_ASSIGN(GpuService); 82 DISALLOW_COPY_AND_ASSIGN(GpuService);
80 }; 83 };
81 84
82 } // namespace ui 85 } // namespace ui
83 86
84 #endif // COMPONENTS_MUS_PUBLIC_CPP_LIB_GPU_SERVICE_CONNECTION_H_ 87 #endif // COMPONENTS_MUS_PUBLIC_CPP_LIB_GPU_SERVICE_CONNECTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698