| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #ifndef CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ | 5 #ifndef CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
| 6 #define CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ | 6 #define CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
| 7 | 7 |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 } | 28 } |
| 29 #endif | 29 #endif |
| 30 | 30 |
| 31 class BookmarkBarGtk; | 31 class BookmarkBarGtk; |
| 32 class Browser; | 32 class Browser; |
| 33 class BrowserTitlebar; | 33 class BrowserTitlebar; |
| 34 class BrowserToolbarGtk; | 34 class BrowserToolbarGtk; |
| 35 class CustomDrawButton; | 35 class CustomDrawButton; |
| 36 class DownloadShelfGtk; | 36 class DownloadShelfGtk; |
| 37 class FindBarGtk; | 37 class FindBarGtk; |
| 38 class FullscreenExitBubbleGtk; |
| 38 class InfoBarContainerGtk; | 39 class InfoBarContainerGtk; |
| 39 class LocationBar; | 40 class LocationBar; |
| 40 class StatusBubbleGtk; | 41 class StatusBubbleGtk; |
| 41 class TabContentsContainerGtk; | 42 class TabContentsContainerGtk; |
| 42 class TabStripGtk; | 43 class TabStripGtk; |
| 43 | 44 |
| 44 // An implementation of BrowserWindow for GTK. | 45 // An implementation of BrowserWindow for GTK. |
| 45 // Cross-platform code will interact with this object when | 46 // Cross-platform code will interact with this object when |
| 46 // it needs to manipulate the window. | 47 // it needs to manipulate the window. |
| 47 | 48 |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 guint32 last_click_time_; | 424 guint32 last_click_time_; |
| 424 gfx::Point last_click_position_; | 425 gfx::Point last_click_position_; |
| 425 | 426 |
| 426 // If true, maximize the window after we call BrowserWindow::Show for the | 427 // If true, maximize the window after we call BrowserWindow::Show for the |
| 427 // first time. This is to work around a compiz bug. | 428 // first time. This is to work around a compiz bug. |
| 428 bool maximize_after_show_; | 429 bool maximize_after_show_; |
| 429 | 430 |
| 430 // The accelerator group used to handle accelerators, owned by this object. | 431 // The accelerator group used to handle accelerators, owned by this object. |
| 431 GtkAccelGroup* accel_group_; | 432 GtkAccelGroup* accel_group_; |
| 432 | 433 |
| 434 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 435 |
| 433 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 436 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 434 }; | 437 }; |
| 435 | 438 |
| 436 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ | 439 #endif // CHROME_BROWSER_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |