 Chromium Code Reviews
 Chromium Code Reviews Issue 1414033009:
  Implement a Menu Item to Hide the Toolbar in Fullscreen  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 1414033009:
  Implement a Menu Item to Hide the Toolbar in Fullscreen  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| Index: chrome/browser/ui/exclusive_access/exclusive_access_context.h | 
| diff --git a/chrome/browser/ui/exclusive_access/exclusive_access_context.h b/chrome/browser/ui/exclusive_access/exclusive_access_context.h | 
| index 36fc41baff6d2fda9dc71544abd942d7d2551202..5aaec0b4e1f918353aaf4844d120931611a2fb46 100644 | 
| --- a/chrome/browser/ui/exclusive_access/exclusive_access_context.h | 
| +++ b/chrome/browser/ui/exclusive_access/exclusive_access_context.h | 
| @@ -28,14 +28,13 @@ class ExclusiveAccessContext { | 
| // fullscreen. | 
| virtual bool IsFullscreen() const = 0; | 
| - // Returns true if fullscreen with toolbar is supported. | 
| - virtual bool SupportsFullscreenWithToolbar() const; | 
| - | 
| // Shows or hides the tab strip, toolbar and bookmark bar with in browser | 
| // fullscreen. | 
| // Currently only supported on Mac. | 
| virtual void UpdateFullscreenWithToolbar(bool with_toolbar); | 
| + virtual void ToggleFullscreenToolbar(); | 
| 
Robert Sesek
2015/11/03 20:09:38
Needs a comment.
 
spqchan
2015/11/04 01:43:42
Done.
 | 
| + | 
| // Returns true if the window is fullscreen with additional UI elements. See | 
| // EnterFullscreen |with_toolbar|. | 
| virtual bool IsFullscreenWithToolbar() const = 0; |