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

Side by Side Diff: content/browser/android/browser_surface_texture_manager.h

Issue 634643002: content: Out-of-process GPU service support for SurfaceTexture backed GpuMemoryBuffers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one last build fix Created 6 years, 2 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
(Empty)
1 // Copyright 2014 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_ANDROID_BROWSER_SURFACE_TEXTURE_MANAGER_H_
6 #define CONTENT_BROWSER_ANDROID_BROWSER_SURFACE_TEXTURE_MANAGER_H_
7
8 #include "content/common/android/surface_texture_manager.h"
9
10 #include "content/common/android/surface_texture_peer.h"
11
12 namespace content {
13
14 class BrowserSurfaceTextureManager : public SurfaceTextureManager,
15 public SurfaceTexturePeer {
16 public:
17 BrowserSurfaceTextureManager();
18 virtual ~BrowserSurfaceTextureManager();
19
20 // Overridden from SurfaceTextureManager:
21 virtual void RegisterSurfaceTexture(
22 int surface_texture_id,
23 int client_id,
24 gfx::SurfaceTexture* surface_texture) override;
25 virtual void UnregisterSurfaceTexture(int surface_texture_id,
26 int client_id) override;
27 virtual gfx::AcceleratedWidget AcquireNativeWidget(int surface_texture_id,
28 int client_id) override;
29
30 // Overridden from SurfaceTexturePeer:
31 virtual void EstablishSurfaceTexturePeer(
32 base::ProcessHandle render_process_handle,
33 scoped_refptr<gfx::SurfaceTexture> surface_texture,
34 int render_frame_id,
35 int player_id) override;
36
37 private:
38 DISALLOW_COPY_AND_ASSIGN(BrowserSurfaceTextureManager);
39 };
40
41 } // namespace content
42
43 #endif // CONTENT_BROWSER_ANDROID_BROWSER_SURFACE_TEXTURE_MANAGER_H_
OLDNEW
« no previous file with comments | « content/browser/android/browser_jni_registrar.cc ('k') | content/browser/android/browser_surface_texture_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698