Chromium Code Reviews| 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 9d053ed2fda3c2828e6127d28e4db16b40499e06..b92491e65c25d0bd379e6f1dadb9627746300e74 100644 |
| --- a/chrome/browser/ui/views/frame/browser_view.cc |
| +++ b/chrome/browser/ui/views/frame/browser_view.cc |
| @@ -1,7 +1,6 @@ |
| // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| - |
|
tony
2011/08/02 17:04:25
Did you mean to remove this line?
jeremya
2011/08/03 07:32:30
Nope! Oops :)
|
| #include "chrome/browser/ui/views/frame/browser_view.h" |
| #if defined(TOOLKIT_USES_GTK) |
| @@ -56,7 +55,7 @@ |
| #include "chrome/browser/ui/views/download/download_in_progress_dialog_view.h" |
| #include "chrome/browser/ui/views/frame/browser_view_layout.h" |
| #include "chrome/browser/ui/views/frame/contents_container.h" |
| -#include "chrome/browser/ui/views/fullscreen_exit_bubble.h" |
| +#include "chrome/browser/ui/views/fullscreen_exit_bubble_views.h" |
| #include "chrome/browser/ui/views/infobars/infobar_container_view.h" |
| #include "chrome/browser/ui/views/location_bar/location_icon_view.h" |
| #include "chrome/browser/ui/views/status_bubble_views.h" |
| @@ -2337,8 +2336,8 @@ void BrowserView::ProcessFullscreen(bool fullscreen) { |
| bool is_kiosk = |
| CommandLine::ForCurrentProcess()->HasSwitch(switches::kKioskMode); |
| if (!is_kiosk) { |
| - fullscreen_bubble_.reset(new FullscreenExitBubble(GetWidget(), |
| - browser_.get())); |
| + fullscreen_bubble_.reset(new FullscreenExitBubbleViews(GetWidget(), |
| + browser_.get())); |
| } |
| } else { |
| #if defined(OS_WIN) |