| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 virtual void HandleKeyboardEvent( | 151 virtual void HandleKeyboardEvent( |
| 152 const content::NativeWebKeyboardEvent& event) OVERRIDE; | 152 const content::NativeWebKeyboardEvent& event) OVERRIDE; |
| 153 virtual void ShowCreateChromeAppShortcutsDialog( | 153 virtual void ShowCreateChromeAppShortcutsDialog( |
| 154 Profile* profile, | 154 Profile* profile, |
| 155 const extensions::Extension* app) OVERRIDE; | 155 const extensions::Extension* app) OVERRIDE; |
| 156 virtual void Cut() OVERRIDE; | 156 virtual void Cut() OVERRIDE; |
| 157 virtual void Copy() OVERRIDE; | 157 virtual void Copy() OVERRIDE; |
| 158 virtual void Paste() OVERRIDE; | 158 virtual void Paste() OVERRIDE; |
| 159 virtual void ShowInstant(TabContents* preview) OVERRIDE; | 159 virtual void ShowInstant(TabContents* preview) OVERRIDE; |
| 160 virtual void HideInstant() OVERRIDE; | 160 virtual void HideInstant() OVERRIDE; |
| 161 virtual void SetInstantPreviewHeight(int value, bool is_percent) OVERRIDE; |
| 161 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 162 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
| 162 virtual bool IsInstantTabShowing() OVERRIDE; | 163 virtual bool IsInstantTabShowing() OVERRIDE; |
| 163 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 164 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
| 164 const gfx::Rect& bounds) OVERRIDE; | 165 const gfx::Rect& bounds) OVERRIDE; |
| 165 virtual FindBar* CreateFindBar() OVERRIDE; | 166 virtual FindBar* CreateFindBar() OVERRIDE; |
| 166 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 167 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
| 167 const gfx::Rect& rect) OVERRIDE; | 168 const gfx::Rect& rect) OVERRIDE; |
| 168 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 169 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
| 169 virtual void ShowPasswordGenerationBubble( | 170 virtual void ShowPasswordGenerationBubble( |
| 170 const gfx::Rect& rect, | 171 const gfx::Rect& rect, |
| (...skipping 390 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 |