| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/views/frame/browser_frame_gtk.h" | 5 #include "chrome/browser/ui/views/frame/browser_frame_gtk.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/browser/themes/browser_theme_provider.h" | 9 #include "chrome/browser/themes/browser_theme_provider.h" |
| 10 #include "chrome/browser/ui/status_bubble.h" | 10 #include "chrome/browser/ui/status_bubble.h" |
| 11 #include "chrome/browser/ui/views/frame/app_panel_browser_frame_view.h" | 11 #include "chrome/browser/ui/views/frame/app_panel_browser_frame_view.h" |
| 12 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" | 12 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" |
| 13 #include "chrome/browser/ui/views/frame/browser_root_view.h" | 13 #include "chrome/browser/ui/views/frame/browser_root_view.h" |
| 14 #include "chrome/browser/ui/views/frame/browser_view.h" | 14 #include "chrome/browser/ui/views/frame/browser_view.h" |
| 15 #include "gfx/font.h" | 15 #include "gfx/font.h" |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 if (was_full_screen != IsFullscreen()) | 138 if (was_full_screen != IsFullscreen()) |
| 139 browser_view_->FullScreenStateChanged(); | 139 browser_view_->FullScreenStateChanged(); |
| 140 return result; | 140 return result; |
| 141 } | 141 } |
| 142 | 142 |
| 143 gboolean BrowserFrameGtk::OnConfigureEvent(GtkWidget* widget, | 143 gboolean BrowserFrameGtk::OnConfigureEvent(GtkWidget* widget, |
| 144 GdkEventConfigure* event) { | 144 GdkEventConfigure* event) { |
| 145 browser_view_->WindowMoved(); | 145 browser_view_->WindowMoved(); |
| 146 return views::WindowGtk::OnConfigureEvent(widget, event); | 146 return views::WindowGtk::OnConfigureEvent(widget, event); |
| 147 } | 147 } |
| OLD | NEW |