Chromium Code Reviews| 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); |