| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index 5e19246cdd0473dbe8662fc0afe54066b6bd7a05..dd29f0e8397ccc4349b52ff2be974e0b95d19a4b 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -1649,10 +1649,13 @@ bool Browser::EmbedsFullscreenWidget() const {
|
| return true;
|
| }
|
|
|
| -void Browser::ToggleFullscreenModeForTab(WebContents* web_contents,
|
| - bool enter_fullscreen) {
|
| - fullscreen_controller_->ToggleFullscreenModeForTab(web_contents,
|
| - enter_fullscreen);
|
| +void Browser::EnterFullscreenModeForTab(WebContents* web_contents,
|
| + const GURL& origin) {
|
| + fullscreen_controller_->EnterFullscreenModeForTab(web_contents, origin);
|
| +}
|
| +
|
| +void Browser::ExitFullscreenModeForTab(WebContents* web_contents) {
|
| + fullscreen_controller_->ExitFullscreenModeForTab(web_contents);
|
| }
|
|
|
| bool Browser::IsFullscreenForTabOrPending(
|
|
|