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

Side by Side Diff: webkit/common/gpu/grcontext_for_webgraphicscontext3d.h

Issue 226203004: Fix skia ganesh resources leak. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 8 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 WEBKIT_COMMON_GPU_GRCONTEXT_FOR_WEBGRAPHICSCONTEXT3D_H_ 5 #ifndef WEBKIT_COMMON_GPU_GRCONTEXT_FOR_WEBGRAPHICSCONTEXT3D_H_
6 #define WEBKIT_COMMON_GPU_GRCONTEXT_FOR_WEBGRAPHICSCONTEXT3D_H_ 6 #define WEBKIT_COMMON_GPU_GRCONTEXT_FOR_WEBGRAPHICSCONTEXT3D_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "skia/ext/refptr.h" 9 #include "skia/ext/refptr.h"
10 #include "webkit/common/gpu/webkit_gpu_export.h" 10 #include "webkit/common/gpu/webkit_gpu_export.h"
11 11
12 class GrContext; 12 class GrContext;
13 namespace blink { class WebGraphicsContext3D; } 13 namespace blink { class WebGraphicsContext3D; }
14 14
15 namespace webkit { 15 namespace webkit {
16 namespace gpu { 16 namespace gpu {
17 17
18 // This class binds an offscreen GrContext to an offscreen context3d. The 18 // This class binds an offscreen GrContext to an offscreen context3d. The
19 // context3d is used by the GrContext so must be valid as long as this class 19 // context3d is used by the GrContext so must be valid as long as this class
20 // is alive. 20 // is alive.
21 class WEBKIT_GPU_EXPORT GrContextForWebGraphicsContext3D { 21 class WEBKIT_GPU_EXPORT GrContextForWebGraphicsContext3D {
22 public: 22 public:
23 explicit GrContextForWebGraphicsContext3D( 23 explicit GrContextForWebGraphicsContext3D(
24 blink::WebGraphicsContext3D* context3d); 24 blink::WebGraphicsContext3D* context3d);
25 virtual ~GrContextForWebGraphicsContext3D(); 25 virtual ~GrContextForWebGraphicsContext3D();
26 26
27 GrContext* get() { return gr_context_.get(); } 27 GrContext* get() { return gr_context_.get(); }
28 28
29 void OnLostContext();
29 void SetMemoryLimit(bool nonzero_allocation); 30 void SetMemoryLimit(bool nonzero_allocation);
30 31
31 private: 32 private:
32 skia::RefPtr<class GrContext> gr_context_; 33 skia::RefPtr<class GrContext> gr_context_;
33 34
34 DISALLOW_COPY_AND_ASSIGN(GrContextForWebGraphicsContext3D); 35 DISALLOW_COPY_AND_ASSIGN(GrContextForWebGraphicsContext3D);
35 }; 36 };
36 37
37 } // namespace gpu 38 } // namespace gpu
38 } // namespace webkit 39 } // namespace webkit
39 40
40 #endif // WEBKIT_COMMON_GPU_GRCONTEXT_FOR_WEBGRAPHICSCONTEXT3D_H_ 41 #endif // WEBKIT_COMMON_GPU_GRCONTEXT_FOR_WEBGRAPHICSCONTEXT3D_H_
OLDNEW
« no previous file with comments | « webkit/common/gpu/context_provider_in_process.cc ('k') | webkit/common/gpu/grcontext_for_webgraphicscontext3d.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698