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

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

Issue 26803002: Follow-ups/Tweaks for Embedded Flash Fullscreen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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/views/frame/browser_view.cc
diff --git a/chrome/browser/ui/views/frame/browser_view.cc b/chrome/browser/ui/views/frame/browser_view.cc
index 75e64af9578e207b40ef91e6dc6e06dabb6949a6..698a89c974c9f4a8109e1528d47a0a0ce89f5caa 100644
--- a/chrome/browser/ui/views/frame/browser_view.cc
+++ b/chrome/browser/ui/views/frame/browser_view.cc
@@ -2318,12 +2318,8 @@ void BrowserView::ProcessFullscreen(bool fullscreen,
browser_->WindowFullscreenStateChanged();
if (fullscreen) {
- if (!chrome::IsRunningInAppMode() &&
- type != FOR_METRO &&
- !ShouldUseImmersiveFullscreenForUrl(url)) {
sky 2013/10/11 01:56:28 Why are you removing the !ShouldUseImm...?
miu 2013/10/11 03:30:30 It's checked in the call to UpdateFullscreenExitBu
- fullscreen_bubble_.reset(new FullscreenExitBubbleViews(
- this, url, bubble_type));
- }
+ if (!chrome::IsRunningInAppMode() && type != FOR_METRO)
+ UpdateFullscreenExitBubbleContent(url, bubble_type);
} else {
#if defined(OS_WIN) && !defined(USE_AURA)
if (omnibox_win) {
« no previous file with comments | « chrome/browser/ui/fullscreen/fullscreen_controller.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698