| Index: content/shell/browser/shell.cc
|
| diff --git a/content/shell/browser/shell.cc b/content/shell/browser/shell.cc
|
| index 58b53e2d11ed169ca37c0c6a328bd1d2942510f1..653afc56562848d9fedbfcf59d639442614c3aba 100644
|
| --- a/content/shell/browser/shell.cc
|
| +++ b/content/shell/browser/shell.cc
|
| @@ -286,6 +286,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)
|
|
|