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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 gfx::Rect GetInstantBounds() OVERRIDE; | 161 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
| 162 virtual bool GetIsShowingInstant() OVERRIDE; |
162 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 163 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
163 const gfx::Rect& bounds) OVERRIDE; | 164 const gfx::Rect& bounds) OVERRIDE; |
164 virtual FindBar* CreateFindBar() OVERRIDE; | 165 virtual FindBar* CreateFindBar() OVERRIDE; |
165 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 166 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
166 const gfx::Rect& rect) OVERRIDE; | 167 const gfx::Rect& rect) OVERRIDE; |
167 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 168 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
168 virtual void ShowPasswordGenerationBubble( | 169 virtual void ShowPasswordGenerationBubble( |
169 const gfx::Rect& rect, | 170 const gfx::Rect& rect, |
170 autofill::PasswordGenerator* password_generator, | 171 autofill::PasswordGenerator* password_generator, |
171 const webkit::forms::PasswordForm& form) OVERRIDE; | 172 const webkit::forms::PasswordForm& form) OVERRIDE; |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 561 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
561 | 562 |
562 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 563 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
563 | 564 |
564 content::NotificationRegistrar registrar_; | 565 content::NotificationRegistrar registrar_; |
565 | 566 |
566 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 567 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
567 }; | 568 }; |
568 | 569 |
569 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 570 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
OLD | NEW |