OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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_BROWSER_GPU_GPU_ARC_VIDEO_SERVICE_HOST_H_ | |
6 #define CONTENT_BROWSER_GPU_GPU_ARC_VIDEO_SERVICE_HOST_H_ | |
7 | |
8 #include <queue> | |
9 | |
10 #include "base/callback.h" | |
11 #include "base/macros.h" | |
12 #include "base/memory/weak_ptr.h" | |
13 #include "base/threading/non_thread_safe.h" | |
14 #include "components/arc/arc_bridge_service.h" | |
15 #include "ipc/ipc_channel_handle.h" | |
16 #include "ipc/ipc_listener.h" | |
17 | |
18 namespace content { | |
19 | |
20 class GpuArcVideoServiceHost | |
Pawel Osciak
2015/12/16 10:17:58
Please add a short description of what this class
kcwu
2015/12/16 14:05:33
Done.
| |
21 : public base::NonThreadSafe, | |
22 public arc::ArcBridgeService::Observer, | |
23 public arc::ArcBridgeService::VideoServiceObserver { | |
24 public: | |
25 GpuArcVideoServiceHost( | |
26 const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner); | |
27 ~GpuArcVideoServiceHost() override; | |
28 | |
29 void Initialize(); | |
30 | |
31 // arc::ArcBridgeService::Observer implementation. | |
32 void OnStateChanged(arc::ArcBridgeService::State state) override; | |
33 | |
34 // arc::ArcBridgeService::VideoServiceObserver implementation. | |
35 void OnRequestArcVideoAcceleratorChannel() override; | |
36 | |
37 private: | |
38 void NotifyArcAcceleratorChannelCreated(const IPC::ChannelHandle& handle); | |
39 void Shutdown(); | |
40 | |
41 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; | |
42 int num_pending_request_; | |
Pawel Osciak
2015/12/16 10:17:58
Please document.
s/num_pending_request_/num_pendi
kcwu
2015/12/16 14:05:33
Done.
| |
43 base::WeakPtrFactory<GpuArcVideoServiceHost> weak_factory_; | |
44 | |
45 DISALLOW_COPY_AND_ASSIGN(GpuArcVideoServiceHost); | |
46 }; | |
47 | |
48 } // namespace content | |
49 | |
50 #endif // CONTENT_BROWSER_GPU_GPU_ARC_VIDEO_SERVICE_HOST_H_ | |
OLD | NEW |