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

Side by Side Diff: media/base/android/dialog_surface.h

Issue 1967553002: DO NOT COMMIT - DialogSurface initial implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 4 years, 4 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/BUILD.gn ('k') | media/base/android/dialog_surface.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 2016 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 MEDIA_BASE_ANDROID_DIALOG_SURFACE_H_
6 #define MEDIA_BASE_ANDROID_DIALOG_SURFACE_H_
7
8 #include <jni.h>
9 #include <stddef.h>
10 #include <stdint.h>
11
12 #include <set>
13 #include <string>
14
15 #include "base/android/scoped_java_ref.h"
16 #include "base/callback.h"
17 #include "base/macros.h"
18 #include "base/task_runner.h"
19 #include "base/threading/thread_checker.h"
20 #include "base/time/time.h"
21 #include "media/base/media_export.h"
22 #include "ui/gfx/geometry/point.h"
23 #include "ui/gfx/geometry/size.h"
24 #include "ui/gl/android/scoped_java_surface.h"
25
26 namespace base {
27 class WaitableEvent;
28 }
29
30 namespace media {
31
32 class DialogSurfaceCallback;
33 class DialogSurfaceManager;
34
35 // This class implements the C++ wrapper around a java DialogSurface.
36 // All callbacks happen on the thread that it's constructed on.
37 class MEDIA_EXPORT DialogSurface {
38 public:
39 // These must match DialogSurface.java
40 enum CallbackOp { SURFACE_CREATED = 0, SURFACE_DESTROYED = 1 };
41
42 // Callback type for finding out about the status of the surface. While we
43 // don't use this directly, it lets us keep DialogSurfaceCallback as an
44 // implementation detail.
45 using Callback = base::Callback<void(CallbackOp)>;
46
47 // Configuration for the surface.
48 struct Config {
49 gfx::Point position;
50 gfx::Size size;
51 // This may also include pixel format, is_secure, etc.
52 };
53
54 // |unwrapped_surface| is the IDialogSurface java instance, which
55 // we will take ownership of. |callback| is the wrapped callback that it will
56 // use to communicate with us (DialogSurfaceCallback).
57 // Note: one generally doesn't want to call this directly. Use
58 // DialogSurfaceManager instead.
59 DialogSurface(const base::android::JavaRef<jobject>& unwrapped_surface,
60 std::unique_ptr<DialogSurfaceCallback>&& callback);
61 ~DialogSurface();
62
63 // Schedule a relayout and/or reposition of the surface.
64 void ScheduleLayout(const Config& config);
65
66 // Return the java surface, if any. One should not assume that this is
67 // available immediately. The callback will be called with SURFACE_CREATED
68 // when it is available. Of course, it may become unavailable again
69 // asynchronously, so one must always check.
70 gl::ScopedJavaSurface GetSurface();
71
72 static bool RegisterDialogSurface(JNIEnv* env);
73
74 protected:
75 bool CalledOnValidThread() const;
76
77 private:
78 // Java DialogSurfaceWrapper instance.
79 base::android::ScopedJavaGlobalRef<jobject> j_wrapped_surface_;
80
81 // Callback that's associated with this surface. We maintain ownership of it
82 // so that the native object stays around while we do.
83 std::unique_ptr<DialogSurfaceCallback> wrapped_callback_;
84
85 base::ThreadChecker thread_checker_;
86
87 DISALLOW_COPY_AND_ASSIGN(DialogSurface);
88 };
89
90 } // namespace media
91
92 #endif // MEDIA_BASE_ANDROID_DIALOG_SURFACE_H_
OLDNEW
« no previous file with comments | « media/base/android/BUILD.gn ('k') | media/base/android/dialog_surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698