| Index: chrome/browser/ui/panels/panel.cc
|
| diff --git a/chrome/browser/ui/panels/panel.cc b/chrome/browser/ui/panels/panel.cc
|
| index 15eaf0d3e9fa5c1cba33f31cd0f6441e74b2e2a8..fe6a5713155333cc14dfc232740692507a45362b 100644
|
| --- a/chrome/browser/ui/panels/panel.cc
|
| +++ b/chrome/browser/ui/panels/panel.cc
|
| @@ -246,7 +246,11 @@ bool Panel::IsMinimized() const {
|
| return expansion_state_ != EXPANDED;
|
| }
|
|
|
| -void Panel::SetFullscreen(bool fullscreen) {
|
| +void Panel::EnterFullscreen(const GURL& url, bool ask_permission) {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void Panel::ExitFullscreen() {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| @@ -460,7 +464,9 @@ void Panel::OpenTabpose() {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| -void Panel::SetPresentationMode(bool presentation_mode) {
|
| +void Panel::SetPresentationMode(bool presentation_mode,
|
| + const GURL& url,
|
| + bool ask_permission) {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
|
|