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

Side by Side Diff: ui/gl/android/scoped_java_surface.h

Issue 1398703003: Fix an issue that an invalid surface could be passed to MediaPlayerBridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing comments Created 5 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
« no previous file with comments | « media/base/android/media_player_bridge.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 UI_GL_ANDROID_SCOPED_JAVA_SURFACE_H_ 5 #ifndef UI_GL_ANDROID_SCOPED_JAVA_SURFACE_H_
6 #define UI_GL_ANDROID_SCOPED_JAVA_SURFACE_H_ 6 #define UI_GL_ANDROID_SCOPED_JAVA_SURFACE_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 9
10 #include "base/android/scoped_java_ref.h" 10 #include "base/android/scoped_java_ref.h"
(...skipping 24 matching lines...) Expand all
35 // the latter no longer owns the surface afterwards. 35 // the latter no longer owns the surface afterwards.
36 ScopedJavaSurface(RValue rvalue); 36 ScopedJavaSurface(RValue rvalue);
37 ScopedJavaSurface& operator=(RValue rhs); 37 ScopedJavaSurface& operator=(RValue rhs);
38 38
39 // Creates a ScopedJavaSurface that is owned externally, i.e., 39 // Creates a ScopedJavaSurface that is owned externally, i.e.,
40 // someone else is responsible to call Surface.release(). 40 // someone else is responsible to call Surface.release().
41 static ScopedJavaSurface AcquireExternalSurface(jobject surface); 41 static ScopedJavaSurface AcquireExternalSurface(jobject surface);
42 42
43 ~ScopedJavaSurface(); 43 ~ScopedJavaSurface();
44 44
45 // Check whether the surface is an empty one. 45 // Checks whether the surface is an empty one.
46 bool IsEmpty() const; 46 bool IsEmpty() const;
47 47
48 // Check whether the surface is hardware protected so that no readback is 48 // Checks whether the surface is hardware protected so that no readback is
49 // possible. 49 // possible.
50 bool is_protected() const { return is_protected_; } 50 bool is_protected() const { return is_protected_; }
51 51
52 const base::android::JavaRef<jobject>& j_surface() const { 52 const base::android::JavaRef<jobject>& j_surface() const {
53 return j_surface_; 53 return j_surface_;
54 } 54 }
55 55
56 private: 56 private:
57 // Performs destructive move from |other| to this. 57 // Performs destructive move from |other| to this.
58 void MoveFrom(ScopedJavaSurface& other); 58 void MoveFrom(ScopedJavaSurface& other);
59 59
60 bool auto_release_; 60 bool auto_release_;
61 bool is_protected_; 61 bool is_protected_;
62 62
63 base::android::ScopedJavaGlobalRef<jobject> j_surface_; 63 base::android::ScopedJavaGlobalRef<jobject> j_surface_;
64 }; 64 };
65 65
66 } // namespace gfx 66 } // namespace gfx
67 67
68 #endif // UI_GL_ANDROID_SCOPED_JAVA_SURFACE_H_ 68 #endif // UI_GL_ANDROID_SCOPED_JAVA_SURFACE_H_
OLDNEW
« no previous file with comments | « media/base/android/media_player_bridge.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698