| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UI_GTK_BROWSER_WINDOW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| 7 | 7 |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 class Browser; | 28 class Browser; |
| 29 class BrowserTitlebarBase; | 29 class BrowserTitlebarBase; |
| 30 class BrowserToolbarGtk; | 30 class BrowserToolbarGtk; |
| 31 class DownloadShelfGtk; | 31 class DownloadShelfGtk; |
| 32 class ExtensionKeybindingRegistryGtk; | 32 class ExtensionKeybindingRegistryGtk; |
| 33 class FindBarGtk; | 33 class FindBarGtk; |
| 34 class FullscreenExitBubbleGtk; | 34 class FullscreenExitBubbleGtk; |
| 35 class GlobalMenuBar; | 35 class GlobalMenuBar; |
| 36 class InfoBarContainerGtk; | 36 class InfoBarContainerGtk; |
| 37 class LocationBar; | 37 class LocationBar; |
| 38 class PrefService; |
| 38 class StatusBubbleGtk; | 39 class StatusBubbleGtk; |
| 39 class TabContentsContainerGtk; | 40 class TabContentsContainerGtk; |
| 40 class TabStripGtk; | 41 class TabStripGtk; |
| 41 | 42 |
| 42 namespace autofill { | 43 namespace autofill { |
| 43 class PasswordGenerator; | 44 class PasswordGenerator; |
| 44 } | 45 } |
| 45 | 46 |
| 46 namespace extensions { | 47 namespace extensions { |
| 47 class Extension; | 48 class Extension; |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 573 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 573 | 574 |
| 574 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 575 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
| 575 | 576 |
| 576 content::NotificationRegistrar registrar_; | 577 content::NotificationRegistrar registrar_; |
| 577 | 578 |
| 578 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 579 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 579 }; | 580 }; |
| 580 | 581 |
| 581 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 582 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |