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

Unified Diff: content/shell/shell_android.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 side-by-side diff with in-line comments
Download patch
Index: content/shell/shell_android.cc
diff --git a/content/shell/shell_android.cc b/content/shell/shell_android.cc
index db407f60badca36848f4351301e915c785c40ecb..1beaf933839121bd386f39f5e4fbdefcfe7c845d 100644
--- a/content/shell/shell_android.cc
+++ b/content/shell/shell_android.cc
@@ -70,6 +70,14 @@ void Shell::Close() {
NOTIMPLEMENTED();
}
+void Shell::AttachLayer(WebContents* web_contents, WebKit::WebLayer& layer) {
klobag.chromium 2012/08/22 07:01:19 const WebLayer&
+ ShellAttachLayer(layer);
+}
+
+void Shell::RemoveLayer(WebContents* web_contents, WebKit::WebLayer& layer) {
+ ShellRemoveLayer(layer);
+}
+
// static
bool Shell::Register(JNIEnv* env) {
return RegisterNativesImpl(env);

Powered by Google App Engine
This is Rietveld 408576698