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

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

Issue 2178973004: DialogSurfaceManager implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed IDialogSurfaceActivityMapper from common.aidl Created 3 years, 12 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 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_MANAGER_H_
6 #define MEDIA_BASE_ANDROID_DIALOG_SURFACE_MANAGER_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/lazy_instance.h"
17 #include "base/macros.h"
18 #include "base/process/process_handle.h"
19 #include "base/time/time.h"
20 #include "media/base/android/dialog_surface.h"
21 #include "media/base/media_export.h"
22 #include "ui/gfx/geometry/point.h"
23 #include "ui/gfx/geometry/size.h"
24
25 namespace media {
26
27 // This class implements the C++ wrapper around the java DialogSurfaceManager.
28 // Typical usage is:
29 //
30 // callback = something that is a DialogSurface::Callback;
31 // unique_ptr<DialogSurface> surface = DialogSurfaceManager::GetPointer()->
32 // CreateSurface(callback);
33 // (wait for callback)
34 // surface->GetSurface()
35 // if (i_want_to_change_the_layout_)
36 // surface->ScheduleLayout(new_position_and_size);
37 class MEDIA_EXPORT DialogSurfaceManager {
38 public:
39 // Return singleton manager instance.
40 static DialogSurfaceManager* Get();
41
42 using Config = DialogSurface::Config;
43
44 // Create a surface for renderer frame owned by renderer |pid|, and id
45 // |render_frame_id|. May return null.
46 std::unique_ptr<DialogSurface> CreateSurface(
47 base::ProcessHandle pid,
48 int render_frame_id,
49 const Config& config,
50 const DialogSurface::Callback& cb);
51
52 protected:
boliu 2017/01/04 01:48:44 why protected? is there a subclass? (in which case
liberato (no reviews please) 2017/01/11 22:17:57 no subclass. private, done.
53 DialogSurfaceManager();
54 ~DialogSurfaceManager();
55
56 private:
57 friend struct base::DefaultLazyInstanceTraits<DialogSurfaceManager>;
58
59 // Java DialogSurfaceManagerWrapper instance.
60 base::android::ScopedJavaGlobalRef<jobject> j_wrapped_manager_;
61
62 DISALLOW_COPY_AND_ASSIGN(DialogSurfaceManager);
63 };
64
65 } // namespace media
66
67 #endif // MEDIA_BASE_ANDROID_DIALOG_SURFACE_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698