| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 167 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
| 168 const gfx::Rect& bounds) OVERRIDE; | 168 const gfx::Rect& bounds) OVERRIDE; |
| 169 virtual FindBar* CreateFindBar() OVERRIDE; | 169 virtual FindBar* CreateFindBar() OVERRIDE; |
| 170 virtual web_modal::WebContentsModalDialogHost* | 170 virtual web_modal::WebContentsModalDialogHost* |
| 171 GetWebContentsModalDialogHost() OVERRIDE; | 171 GetWebContentsModalDialogHost() OVERRIDE; |
| 172 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 172 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
| 173 const gfx::Rect& rect) OVERRIDE; | 173 const gfx::Rect& rect) OVERRIDE; |
| 174 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 174 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
| 175 virtual void ShowPasswordGenerationBubble( | 175 virtual void ShowPasswordGenerationBubble( |
| 176 const gfx::Rect& rect, | 176 const gfx::Rect& rect, |
| 177 const content::PasswordForm& form, | 177 const autofill::PasswordForm& form, |
| 178 autofill::PasswordGenerator* password_generator) OVERRIDE; | 178 autofill::PasswordGenerator* password_generator) OVERRIDE; |
| 179 virtual int GetRenderViewHeightInsetWithDetachedBookmarkBar() OVERRIDE; | 179 virtual int GetRenderViewHeightInsetWithDetachedBookmarkBar() OVERRIDE; |
| 180 | 180 |
| 181 // Overridden from NotificationObserver: | 181 // Overridden from NotificationObserver: |
| 182 virtual void Observe(int type, | 182 virtual void Observe(int type, |
| 183 const content::NotificationSource& source, | 183 const content::NotificationSource& source, |
| 184 const content::NotificationDetails& details) OVERRIDE; | 184 const content::NotificationDetails& details) OVERRIDE; |
| 185 | 185 |
| 186 // Overridden from TabStripModelObserver: | 186 // Overridden from TabStripModelObserver: |
| 187 virtual void TabDetachedAt(content::WebContents* contents, | 187 virtual void TabDetachedAt(content::WebContents* contents, |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 576 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 577 | 577 |
| 578 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 578 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
| 579 | 579 |
| 580 content::NotificationRegistrar registrar_; | 580 content::NotificationRegistrar registrar_; |
| 581 | 581 |
| 582 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 582 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 583 }; | 583 }; |
| 584 | 584 |
| 585 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 585 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |