| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 const extensions::Extension* app) OVERRIDE; | 158 const extensions::Extension* app) OVERRIDE; |
| 159 virtual void Cut() OVERRIDE; | 159 virtual void Cut() OVERRIDE; |
| 160 virtual void Copy() OVERRIDE; | 160 virtual void Copy() OVERRIDE; |
| 161 virtual void Paste() OVERRIDE; | 161 virtual void Paste() OVERRIDE; |
| 162 virtual void ShowInstant(TabContents* preview, | 162 virtual void ShowInstant(TabContents* preview, |
| 163 int height, | 163 int height, |
| 164 InstantSizeUnits units) OVERRIDE; | 164 InstantSizeUnits units) OVERRIDE; |
| 165 virtual void HideInstant() OVERRIDE; | 165 virtual void HideInstant() OVERRIDE; |
| 166 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 166 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
| 167 virtual bool IsInstantTabShowing() OVERRIDE; | 167 virtual bool IsInstantTabShowing() OVERRIDE; |
| 168 virtual void SetInstantHasCustomLogo(bool has_logo) OVERRIDE; |
| 168 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 169 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
| 169 const gfx::Rect& bounds) OVERRIDE; | 170 const gfx::Rect& bounds) OVERRIDE; |
| 170 virtual FindBar* CreateFindBar() OVERRIDE; | 171 virtual FindBar* CreateFindBar() OVERRIDE; |
| 171 virtual bool GetConstrainedWindowTopY(int* top_y) OVERRIDE; | 172 virtual bool GetConstrainedWindowTopY(int* top_y) OVERRIDE; |
| 172 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 173 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
| 173 const gfx::Rect& rect) OVERRIDE; | 174 const gfx::Rect& rect) OVERRIDE; |
| 174 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 175 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
| 175 virtual void ShowPasswordGenerationBubble( | 176 virtual void ShowPasswordGenerationBubble( |
| 176 const gfx::Rect& rect, | 177 const gfx::Rect& rect, |
| 177 const content::PasswordForm& form, | 178 const content::PasswordForm& form, |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 550 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 550 | 551 |
| 551 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 552 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
| 552 | 553 |
| 553 content::NotificationRegistrar registrar_; | 554 content::NotificationRegistrar registrar_; |
| 554 | 555 |
| 555 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 556 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 556 }; | 557 }; |
| 557 | 558 |
| 558 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 559 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |