| 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_TABS_TAB_STRIP_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_TABS_TAB_STRIP_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_TABS_TAB_STRIP_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_TABS_TAB_STRIP_GTK_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "content/public/browser/notification_observer.h" | 21 #include "content/public/browser/notification_observer.h" |
| 22 #include "content/public/browser/notification_registrar.h" | 22 #include "content/public/browser/notification_registrar.h" |
| 23 #include "ui/base/gtk/gtk_signal.h" | 23 #include "ui/base/gtk/gtk_signal.h" |
| 24 #include "ui/base/gtk/owned_widget_gtk.h" | 24 #include "ui/base/gtk/owned_widget_gtk.h" |
| 25 #include "ui/gfx/rect.h" | 25 #include "ui/gfx/rect.h" |
| 26 | 26 |
| 27 class BrowserWindowGtk; | 27 class BrowserWindowGtk; |
| 28 class CustomDrawButton; | 28 class CustomDrawButton; |
| 29 class DraggedTabControllerGtk; | 29 class DraggedTabControllerGtk; |
| 30 class GtkThemeService; | 30 class GtkThemeService; |
| 31 class TabContents; |
| 32 typedef TabContents TabContentsWrapper; |
| 31 | 33 |
| 32 namespace gfx { | 34 namespace gfx { |
| 33 class Image; | 35 class Image; |
| 34 } | 36 } |
| 35 | 37 |
| 36 class TabStripGtk : public TabStripModelObserver, | 38 class TabStripGtk : public TabStripModelObserver, |
| 37 public TabGtk::TabDelegate, | 39 public TabGtk::TabDelegate, |
| 38 public MessageLoopForUI::Observer, | 40 public MessageLoopForUI::Observer, |
| 39 public content::NotificationObserver, | 41 public content::NotificationObserver, |
| 40 public TabstripOriginProvider, | 42 public TabstripOriginProvider, |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 | 495 |
| 494 // Helper for performing tab selection as a result of dragging over a tab. | 496 // Helper for performing tab selection as a result of dragging over a tab. |
| 495 HoverTabSelector hover_tab_selector_; | 497 HoverTabSelector hover_tab_selector_; |
| 496 | 498 |
| 497 content::NotificationRegistrar registrar_; | 499 content::NotificationRegistrar registrar_; |
| 498 | 500 |
| 499 DISALLOW_COPY_AND_ASSIGN(TabStripGtk); | 501 DISALLOW_COPY_AND_ASSIGN(TabStripGtk); |
| 500 }; | 502 }; |
| 501 | 503 |
| 502 #endif // CHROME_BROWSER_UI_GTK_TABS_TAB_STRIP_GTK_H_ | 504 #endif // CHROME_BROWSER_UI_GTK_TABS_TAB_STRIP_GTK_H_ |
| OLD | NEW |