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

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: address comments, rebase 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
« content/shell/android/shell_manager.cc ('K') | « content/shell/shell.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_android.cc
diff --git a/content/shell/shell_android.cc b/content/shell/shell_android.cc
index db407f60badca36848f4351301e915c785c40ecb..859184ba946c593e23d8e66ec8fe7feaee4f3311 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) {
+ ShellAttachLayer(layer);
+}
+
+void Shell::RemoveLayer(WebContents* web_contents, WebKit::WebLayer* layer) {
+ ShellRemoveLayer(layer);
+}
+
// static
bool Shell::Register(JNIEnv* env) {
return RegisterNativesImpl(env);
« content/shell/android/shell_manager.cc ('K') | « content/shell/shell.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698