Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5370)

Unified Diff: chrome/browser/ui/exclusive_access/exclusive_access_context.h

Issue 1650483002: Refactor: Untangle Mac's ExclusiveAccessContext from BrowserWindow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename accessor Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 33794c52cdfc54389e13c8d97d19d9f992f91c09..63f10be9b98ab61073439ce8992e0e5a2a20bd31 100644
--- a/chrome/browser/ui/exclusive_access/exclusive_access_context.h
+++ b/chrome/browser/ui/exclusive_access/exclusive_access_context.h
@@ -43,7 +43,7 @@ class ExclusiveAccessContext {
// Returns true if the window is fullscreen with additional UI elements. See
// EnterFullscreen |with_toolbar|.
- virtual bool IsFullscreenWithToolbar() const = 0;
+ virtual bool IsFullscreenWithToolbar() const;
// Enters fullscreen and update exit bubble.
// On Mac, the tab strip and toolbar will be shown if |with_toolbar| is true,
@@ -80,10 +80,10 @@ class ExclusiveAccessContext {
// hide/unhide its download shelf widget when it is instructed to enter/exit
// fullscreen mode.
// Displays the download shelf associated with currently active window.
- virtual void UnhideDownloadShelf();
+ virtual void UnhideDownloadShelf() = 0;
// Hides download shelf associated with currently active window.
- virtual void HideDownloadShelf();
+ virtual void HideDownloadShelf() = 0;
};
#endif // CHROME_BROWSER_UI_EXCLUSIVE_ACCESS_EXCLUSIVE_ACCESS_CONTEXT_H_

Powered by Google App Engine
This is Rietveld 408576698