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

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

Issue 2525483005: Remove SurfaceTextureManager (Closed)
Patch Set: Fix link error Created 4 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
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/android/browser_surface_texture_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "base/macros.h"
9 #include "base/memory/singleton.h"
10 #include "content/common/content_export.h"
11 #include "gpu/ipc/common/android/surface_texture_manager.h"
12
13 namespace content {
14
15 class CONTENT_EXPORT BrowserSurfaceTextureManager
16 : public gpu::SurfaceTextureManager {
17 public:
18 static BrowserSurfaceTextureManager* GetInstance();
19
20 // Overridden from SurfaceTextureManager:
21 void RegisterSurfaceTexture(int surface_texture_id,
22 int client_id,
23 gl::SurfaceTexture* surface_texture) override;
24 void UnregisterSurfaceTexture(int surface_texture_id, int client_id) override;
25 gfx::AcceleratedWidget AcquireNativeWidgetForSurfaceTexture(
26 int surface_texture_id) override;
27
28 private:
29 friend struct base::DefaultSingletonTraits<BrowserSurfaceTextureManager>;
30
31 BrowserSurfaceTextureManager();
32 ~BrowserSurfaceTextureManager() override;
33
34 DISALLOW_COPY_AND_ASSIGN(BrowserSurfaceTextureManager);
35 };
36
37 } // namespace content
38
39 #endif // CONTENT_BROWSER_ANDROID_BROWSER_SURFACE_TEXTURE_MANAGER_H_
OLDNEW
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/android/browser_surface_texture_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698