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

Unified Diff: content/app/android/child_process_service_impl.cc

Issue 2178973004: DialogSurfaceManager implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DialogSurfaceManager.java => DialogSurfaceManagerImpl.java and stopped using activity for window to… Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: content/app/android/child_process_service_impl.cc
diff --git a/content/app/android/child_process_service_impl.cc b/content/app/android/child_process_service_impl.cc
index 083c3209a62c0107afde08c80aaefcb7c9e9889e..aa2615ee937733197993e3173826ae3f0539146c 100644
--- a/content/app/android/child_process_service_impl.cc
+++ b/content/app/android/child_process_service_impl.cc
@@ -16,6 +16,7 @@
#include "base/unguessable_token.h"
#include "content/child/child_thread_impl.h"
#include "content/public/common/content_descriptors.h"
+#include "gpu/ipc/common/android/dialog_surface_lookup.h"
#include "gpu/ipc/common/android/scoped_surface_request_conduit.h"
#include "gpu/ipc/common/android/surface_texture_manager.h"
#include "gpu/ipc/common/android/surface_texture_peer.h"
@@ -38,7 +39,8 @@ namespace {
class SurfaceTextureManagerImpl : public gpu::SurfaceTextureManager,
public gpu::SurfaceTexturePeer,
public gpu::ScopedSurfaceRequestConduit,
- public gpu::GpuSurfaceLookup {
+ public gpu::GpuSurfaceLookup,
+ public gpu::DialogSurfaceLookup {
public:
// |service impl| is the instance of
// org.chromium.content.app.ChildProcessServiceImpl.
@@ -48,11 +50,13 @@ class SurfaceTextureManagerImpl : public gpu::SurfaceTextureManager,
SurfaceTexturePeer::InitInstance(this);
gpu::GpuSurfaceLookup::InitInstance(this);
gpu::ScopedSurfaceRequestConduit::SetInstance(this);
+ gpu::DialogSurfaceLookup::InitInstance(this);
}
~SurfaceTextureManagerImpl() override {
SurfaceTexturePeer::InitInstance(NULL);
gpu::GpuSurfaceLookup::InitInstance(NULL);
gpu::ScopedSurfaceRequestConduit::SetInstance(nullptr);
+ gpu::DialogSurfaceLookup::InitInstance(NULL);
}
// Overridden from SurfaceTextureManager:
@@ -143,6 +147,15 @@ class SurfaceTextureManagerImpl : public gpu::SurfaceTextureManager,
surface_id));
}
+ // Overridden from DialogSurfaceLookup:
+ base::android::ScopedJavaLocalRef<jobject> GetDialogSurfaceManager()
+ override {
+ JNIEnv* env = base::android::AttachCurrentThread();
+ return base::android::ScopedJavaLocalRef<jobject>(
+ content::Java_ChildProcessServiceImpl_getDialogSurfaceManager(
+ env, service_impl_.obj()));
+ }
+
private:
// The instance of org.chromium.content.app.ChildProcessServiceImpl.
base::android::ScopedJavaGlobalRef<jobject> service_impl_;

Powered by Google App Engine
This is Rietveld 408576698