| 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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 562 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 562 | 563 |
| 563 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 564 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
| 564 | 565 |
| 565 content::NotificationRegistrar registrar_; | 566 content::NotificationRegistrar registrar_; |
| 566 | 567 |
| 567 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 568 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 568 }; | 569 }; |
| 569 | 570 |
| 570 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 571 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |