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

Side by Side Diff: content/shell/android/shell_manager.cc

Issue 10828356: Very basic Android browser-side compositing support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "content/shell/android/shell_manager.h" 5 #include "content/shell/android/shell_manager.h"
6 6
7 #include "base/android/jni_android.h" 7 #include "base/android/jni_android.h"
8 #include "base/android/jni_string.h" 8 #include "base/android/jni_string.h"
9 #include "base/android/scoped_java_ref.h" 9 #include "base/android/scoped_java_ref.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/lazy_instance.h" 11 #include "base/lazy_instance.h"
12 #include "content/shell/shell.h" 12 #include "content/shell/shell.h"
13 #include "content/shell/shell_browser_context.h" 13 #include "content/shell/shell_browser_context.h"
14 #include "content/shell/shell_content_browser_client.h" 14 #include "content/shell/shell_content_browser_client.h"
15 #include "content/public/browser/android/draw_delegate.h" 15 #include "content/public/browser/android/compositor.h"
16 #include "content/public/browser/render_widget_host_view.h"
17 #include "content/public/browser/web_contents.h" 16 #include "content/public/browser/web_contents.h"
18 #include "content/shell/android/draw_context.h"
19 #include "content/shell/shell.h" 17 #include "content/shell/shell.h"
20 #include "googleurl/src/gurl.h" 18 #include "googleurl/src/gurl.h"
21 #include "jni/ShellManager_jni.h" 19 #include "jni/ShellManager_jni.h"
20 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayer.h"
22 #include "ui/gfx/size.h" 21 #include "ui/gfx/size.h"
23 22
24 #include <android/native_window_jni.h> 23 #include <android/native_window_jni.h>
25 24
26 using base::android::ScopedJavaLocalRef; 25 using base::android::ScopedJavaLocalRef;
27 using content::DrawContext; 26 using content::Compositor;
28 using content::DrawDelegate;
29 27
30 namespace { 28 namespace {
31 29
32 struct GlobalState { 30 struct GlobalState {
33 GlobalState()
34 : context(NULL) {
35 }
36 base::android::ScopedJavaGlobalRef<jobject> j_obj; 31 base::android::ScopedJavaGlobalRef<jobject> j_obj;
37 DrawContext* context; 32 WebKit::WebLayer root_layer;
38 }; 33 };
39 34
40 base::LazyInstance<GlobalState> g_global_state = LAZY_INSTANCE_INITIALIZER; 35 base::LazyInstance<GlobalState> g_global_state = LAZY_INSTANCE_INITIALIZER;
41 36
42 static void SurfaceUpdated(
43 uint64 texture,
44 content::RenderWidgetHostView* view,
45 const DrawDelegate::SurfacePresentedCallback& callback) {
46 uint32 sync_point = g_global_state.Get().context->Draw(texture);
47 callback.Run(sync_point);
48 }
49
50 } // anonymous namespace 37 } // anonymous namespace
51 38
52 namespace content { 39 namespace content {
53 40
54 jobject CreateShellView() { 41 jobject CreateShellView() {
55 JNIEnv* env = base::android::AttachCurrentThread(); 42 JNIEnv* env = base::android::AttachCurrentThread();
56 return Java_ShellManager_createShell( 43 return Java_ShellManager_createShell(
57 env, g_global_state.Get().j_obj.obj()).Release(); 44 env, g_global_state.Get().j_obj.obj()).Release();
58 } 45 }
59 46
60 // Register native methods 47 // Register native methods
61 bool RegisterShellManager(JNIEnv* env) { 48 bool RegisterShellManager(JNIEnv* env) {
62 return RegisterNativesImpl(env); 49 return RegisterNativesImpl(env);
63 } 50 }
64 51
65 static void Init(JNIEnv* env, jclass clazz, jobject obj) { 52 static void Init(JNIEnv* env, jclass clazz, jobject obj) {
66 g_global_state.Get().j_obj.Reset( 53 g_global_state.Get().j_obj.Reset(
67 base::android::ScopedJavaLocalRef<jobject>(env, obj)); 54 base::android::ScopedJavaLocalRef<jobject>(env, obj));
68 DrawDelegate::SurfaceUpdatedCallback cb = base::Bind(
69 &SurfaceUpdated);
70 DrawDelegate::GetInstance()->SetUpdateCallback(cb);
71 } 55 }
72 56
73 static void SurfaceCreated( 57 static void SurfaceCreated(
74 JNIEnv* env, jclass clazz, jobject jsurface) { 58 JNIEnv* env, jclass clazz, jobject jsurface) {
75 ANativeWindow* native_window = ANativeWindow_fromSurface(env, jsurface); 59 ANativeWindow* native_window = ANativeWindow_fromSurface(env, jsurface);
76 if (native_window) { 60 if (native_window) {
77 if (g_global_state.Get().context) 61 Compositor::GetInstance()->SetWindowSurface(native_window);
78 delete g_global_state.Get().context;
79
80 g_global_state.Get().context = new DrawContext(native_window);
81 ANativeWindow_release(native_window); 62 ANativeWindow_release(native_window);
63 if (g_global_state.Get().root_layer.isNull())
64 g_global_state.Get().root_layer = WebKit::WebLayer::create();
65 Compositor::GetInstance()->SetRootLayer(g_global_state.Get().root_layer);
82 } 66 }
83 } 67 }
84 68
85 static void SurfaceDestroyed(JNIEnv* env, jclass clazz) { 69 static void SurfaceDestroyed(JNIEnv* env, jclass clazz) {
86 if (g_global_state.Get().context) 70 Compositor::GetInstance()->SetWindowSurface(NULL);
87 delete g_global_state.Get().context;
88 } 71 }
89 72
90 static void SurfaceSetSize( 73 static void SurfaceSetSize(
91 JNIEnv* env, jclass clazz, jint width, jint height) { 74 JNIEnv* env, jclass clazz, jint width, jint height) {
92 gfx::Size size = gfx::Size(width, height); 75 gfx::Size size = gfx::Size(width, height);
93 DrawDelegate::GetInstance()->SetBounds(size); 76 Compositor::GetInstance()->SetWindowBounds(size);
94 DCHECK(g_global_state.Get().context);
95 g_global_state.Get().context->Reshape(width, height);
96 } 77 }
97 78
98 void LaunchShell(JNIEnv* env, jclass clazz, jstring jurl) { 79 void LaunchShell(JNIEnv* env, jclass clazz, jstring jurl) {
99 ShellBrowserContext* browserContext = 80 ShellBrowserContext* browserContext =
100 static_cast<ShellContentBrowserClient*>( 81 static_cast<ShellContentBrowserClient*>(
101 GetContentClient()->browser())->browser_context(); 82 GetContentClient()->browser())->browser_context();
102 GURL url(base::android::ConvertJavaStringToUTF8(env, jurl)); 83 GURL url(base::android::ConvertJavaStringToUTF8(env, jurl));
103 Shell::CreateNewWindow(browserContext, 84 Shell::CreateNewWindow(browserContext,
104 url, 85 url,
105 NULL, 86 NULL,
106 MSG_ROUTING_NONE, 87 MSG_ROUTING_NONE,
107 NULL); 88 NULL);
108 } 89 }
109 90
91 void ShellAttachLayer(WebKit::WebLayer& layer) {
92 g_global_state.Get().root_layer.addChild(layer);
93 }
94
95
96 void ShellRemoveLayer(WebKit::WebLayer& layer) {
97 layer.removeFromParent();
98 }
99
110 } // namespace content 100 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698