| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 PrefObserver: | 186 // Overridden from PrefObserver: |
| 187 virtual void OnPreferenceChanged(PrefServiceBase* service, | 187 virtual void OnPreferenceChanged(PrefServiceBase* service, |
| 188 const std::string& pref_name) OVERRIDE; | 188 const std::string& pref_name) OVERRIDE; |
| 189 | 189 |
| 190 // Overridden from TabStripModelObserver: | 190 // Overridden from TabStripModelObserver: |
| 191 virtual void TabDetachedAt(content::WebContents* contents, | 191 virtual void TabDetachedAt(content::WebContents* contents, |
| 192 int index) OVERRIDE; | 192 int index) OVERRIDE; |
| 193 virtual void ActiveTabChanged(TabContents* old_contents, | 193 virtual void ActiveTabChanged(content::WebContents* old_contents, |
| 194 TabContents* new_contents, | 194 content::WebContents* new_contents, |
| 195 int index, | 195 int index, |
| 196 bool user_gesture) OVERRIDE; | 196 bool user_gesture) OVERRIDE; |
| 197 | 197 |
| 198 // Overridden from ActiveWindowWatcherXObserver. | 198 // Overridden from ActiveWindowWatcherXObserver. |
| 199 virtual void ActiveWindowChanged(GdkWindow* active_window) OVERRIDE; | 199 virtual void ActiveWindowChanged(GdkWindow* active_window) OVERRIDE; |
| 200 | 200 |
| 201 // Overridden from InfoBarContainer::Delegate: | 201 // Overridden from InfoBarContainer::Delegate: |
| 202 virtual SkColor GetInfoBarSeparatorColor() const OVERRIDE; | 202 virtual SkColor GetInfoBarSeparatorColor() const OVERRIDE; |
| 203 virtual void InfoBarContainerStateChanged(bool is_animating) OVERRIDE; | 203 virtual void InfoBarContainerStateChanged(bool is_animating) OVERRIDE; |
| 204 virtual bool DrawInfoBarArrows(int* x) const OVERRIDE; | 204 virtual bool DrawInfoBarArrows(int* x) const OVERRIDE; |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 575 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
| 576 | 576 |
| 577 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 577 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
| 578 | 578 |
| 579 content::NotificationRegistrar registrar_; | 579 content::NotificationRegistrar registrar_; |
| 580 | 580 |
| 581 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 581 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
| 582 }; | 582 }; |
| 583 | 583 |
| 584 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 584 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
| OLD | NEW |