| Index: content/shell/browser/shell.cc
|
| diff --git a/content/shell/browser/shell.cc b/content/shell/browser/shell.cc
|
| index 75256552811e7d44d4a196a296ee5385c13a0cd2..5357b1f871239e10ae4226234bccf220905dc0c2 100644
|
| --- a/content/shell/browser/shell.cc
|
| +++ b/content/shell/browser/shell.cc
|
| @@ -307,6 +307,15 @@ void Shell::LoadingStateChanged(WebContents* source,
|
| PlatformSetIsLoading(source->IsLoading());
|
| }
|
|
|
| +void Shell::EnterFullscreenModeForTab(WebContents* web_contents,
|
| + const GURL& origin) {
|
| + ToggleFullscreenModeForTab(web_contents, true);
|
| +}
|
| +
|
| +void Shell::ExitFullscreenModeForTab(WebContents* web_contents) {
|
| + ToggleFullscreenModeForTab(web_contents, false);
|
| +}
|
| +
|
| void Shell::ToggleFullscreenModeForTab(WebContents* web_contents,
|
| bool enter_fullscreen) {
|
| #if defined(OS_ANDROID)
|
|
|