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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 166 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
167 virtual bool IsInstantTabShowing() OVERRIDE; | 167 virtual bool IsInstantTabShowing() OVERRIDE; |
168 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 168 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
169 const gfx::Rect& bounds) OVERRIDE; | 169 const gfx::Rect& bounds) OVERRIDE; |
170 virtual FindBar* CreateFindBar() OVERRIDE; | 170 virtual FindBar* CreateFindBar() OVERRIDE; |
171 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 171 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
172 const gfx::Rect& rect) OVERRIDE; | 172 const gfx::Rect& rect) OVERRIDE; |
173 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 173 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
174 virtual void ShowPasswordGenerationBubble( | 174 virtual void ShowPasswordGenerationBubble( |
175 const gfx::Rect& rect, | 175 const gfx::Rect& rect, |
176 const webkit::forms::PasswordForm& form, | 176 const content::PasswordForm& form, |
177 autofill::PasswordGenerator* password_generator) OVERRIDE; | 177 autofill::PasswordGenerator* password_generator) OVERRIDE; |
178 | 178 |
179 // Overridden from NotificationObserver: | 179 // Overridden from NotificationObserver: |
180 virtual void Observe(int type, | 180 virtual void Observe(int type, |
181 const content::NotificationSource& source, | 181 const content::NotificationSource& source, |
182 const content::NotificationDetails& details) OVERRIDE; | 182 const content::NotificationDetails& details) OVERRIDE; |
183 | 183 |
184 // Overridden from TabStripModelObserver: | 184 // Overridden from TabStripModelObserver: |
185 virtual void TabDetachedAt(TabContents* contents, int index) OVERRIDE; | 185 virtual void TabDetachedAt(TabContents* contents, int index) OVERRIDE; |
186 virtual void ActiveTabChanged(TabContents* old_contents, | 186 virtual void ActiveTabChanged(TabContents* old_contents, |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 548 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
549 | 549 |
550 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 550 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
551 | 551 |
552 content::NotificationRegistrar registrar_; | 552 content::NotificationRegistrar registrar_; |
553 | 553 |
554 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 554 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
555 }; | 555 }; |
556 | 556 |
557 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 557 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
OLD | NEW |