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

Unified Diff: chrome/browser/ui/views/frame/browser_view.h

Issue 789403002: Rename fullscreen_exit_bubble_* to exclusive_access_bubble_* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated based on CR comments Created 6 years 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/views/frame/browser_view.h
diff --git a/chrome/browser/ui/views/frame/browser_view.h b/chrome/browser/ui/views/frame/browser_view.h
index ed8eea2d3e89d03b8e11f8cd23098bf3d42ea308..f65ef38d83fd2784dc3fa5961241ca29a1b5fc7a 100644
--- a/chrome/browser/ui/views/frame/browser_view.h
+++ b/chrome/browser/ui/views/frame/browser_view.h
@@ -48,7 +48,7 @@ class Browser;
class BrowserViewLayout;
class ContentsLayoutManager;
class DownloadShelfView;
-class FullscreenExitBubbleViews;
+class ExclusiveAccessBubbleViews;
class InfoBarContainerView;
class LocationBarView;
class PermissionBubbleViewViews;
@@ -179,8 +179,8 @@ class BrowserView : public BrowserWindow,
InfoBarContainerView* infobar_container() { return infobar_container_; }
// Accessor for the FullscreenExitBubbleViews.
- FullscreenExitBubbleViews* fullscreen_exit_bubble() {
- return fullscreen_bubble_.get();
+ ExclusiveAccessBubbleViews* exclusive_access_bubble() {
+ return exclusive_access_bubble_.get();
}
// Returns true if various window components are visible.
@@ -281,12 +281,12 @@ class BrowserView : public BrowserWindow,
void Minimize() override;
void Restore() override;
void EnterFullscreen(const GURL& url,
- FullscreenExitBubbleType bubble_type,
+ ExclusiveAccessBubbleType bubble_type,
bool with_toolbar) override;
void ExitFullscreen() override;
void UpdateFullscreenExitBubbleContent(
const GURL& url,
- FullscreenExitBubbleType bubble_type) override;
+ ExclusiveAccessBubbleType bubble_type) override;
bool ShouldHideUIForFullscreen() const override;
bool IsFullscreen() const override;
bool IsFullscreenBubbleVisible() const override;
@@ -527,7 +527,7 @@ class BrowserView : public BrowserWindow,
void ProcessFullscreen(bool fullscreen,
FullscreenMode mode,
const GURL& url,
- FullscreenExitBubbleType bubble_type);
+ ExclusiveAccessBubbleType bubble_type);
// Returns whether immmersive fullscreen should replace fullscreen. This
// should only occur for "browser-fullscreen" for tabbed-typed windows (not
@@ -667,7 +667,7 @@ class BrowserView : public BrowserWindow,
// jankiness.
bool in_process_fullscreen_;
- scoped_ptr<FullscreenExitBubbleViews> fullscreen_bubble_;
+ scoped_ptr<ExclusiveAccessBubbleViews> exclusive_access_bubble_;
#if defined(OS_WIN)
// This object is used to perform periodic actions in a worker
« no previous file with comments | « chrome/browser/ui/views/exclusive_access_bubble_views.cc ('k') | chrome/browser/ui/views/frame/browser_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698