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

Side by Side Diff: content/browser/gpu/gpu_arc_video_service_host.h

Issue 1451353002: Implement GpuArcVideoService for arc video accelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use GpuProcessHost instead of GpuChannelHost Created 5 years 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
(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 : public base::NonThreadSafe,
21 public arc::ArcBridgeService::Observer {
22 public:
23 GpuArcVideoServiceHost(
24 const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner);
25 ~GpuArcVideoServiceHost() override;
26
27 void Initialize();
28
29 // arc::ArcBridgeService::Observer implementation.
30 void OnStateChanged(arc::ArcBridgeService::State state) override;
31 void OnCreateArcVideoAcceleratorConnection() override;
32
33 private:
34 void NotifyArcAcceleratorChannelCreated(const IPC::ChannelHandle& handle);
35 void Shutdown();
36
37 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
38 int num_pending_request_;
39 base::WeakPtrFactory<GpuArcVideoServiceHost> weak_factory_;
40
41 DISALLOW_COPY_AND_ASSIGN(GpuArcVideoServiceHost);
42 };
43
44 } // namespace content
45
46 #endif // CONTENT_BROWSER_GPU_GPU_ARC_VIDEO_SERVICE_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698