| 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 CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ | 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ |
| 6 #define CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ | 6 #define CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
| 10 | 10 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 TabContents* tab_contents() { return tab_contents_; } | 45 TabContents* tab_contents() { return tab_contents_; } |
| 46 GtkWidget* expanded_container() { return expanded_.get(); } | 46 GtkWidget* expanded_container() { return expanded_.get(); } |
| 47 WebContents* web_contents(); | 47 WebContents* web_contents(); |
| 48 | 48 |
| 49 // Allows our embeder to intercept incoming drag messages. | 49 // Allows our embeder to intercept incoming drag messages. |
| 50 void SetDragDestDelegate(WebDragDestDelegate* delegate); | 50 void SetDragDestDelegate(WebDragDestDelegate* delegate); |
| 51 | 51 |
| 52 // WebContentsView implementation -------------------------------------------- | 52 // WebContentsView implementation -------------------------------------------- |
| 53 | 53 |
| 54 virtual void CreateView(const gfx::Size& initial_size) OVERRIDE; | 54 virtual void CreateView(const gfx::Size& initial_size) OVERRIDE; |
| 55 virtual RenderWidgetHostView* CreateViewForWidget( | 55 virtual content::RenderWidgetHostView* CreateViewForWidget( |
| 56 RenderWidgetHost* render_widget_host) OVERRIDE; | 56 RenderWidgetHost* render_widget_host) OVERRIDE; |
| 57 | 57 |
| 58 virtual gfx::NativeView GetNativeView() const OVERRIDE; | 58 virtual gfx::NativeView GetNativeView() const OVERRIDE; |
| 59 virtual gfx::NativeView GetContentNativeView() const OVERRIDE; | 59 virtual gfx::NativeView GetContentNativeView() const OVERRIDE; |
| 60 virtual gfx::NativeWindow GetTopLevelNativeWindow() const OVERRIDE; | 60 virtual gfx::NativeWindow GetTopLevelNativeWindow() const OVERRIDE; |
| 61 virtual void GetContainerBounds(gfx::Rect* out) const OVERRIDE; | 61 virtual void GetContainerBounds(gfx::Rect* out) const OVERRIDE; |
| 62 virtual void SetPageTitle(const string16& title) OVERRIDE; | 62 virtual void SetPageTitle(const string16& title) OVERRIDE; |
| 63 virtual void OnTabCrashed(base::TerminationStatus status, | 63 virtual void OnTabCrashed(base::TerminationStatus status, |
| 64 int error_code) OVERRIDE; | 64 int error_code) OVERRIDE; |
| 65 virtual void SizeContents(const gfx::Size& size) OVERRIDE; | 65 virtual void SizeContents(const gfx::Size& size) OVERRIDE; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 // The overlaid view. Owned by the caller of |InstallOverlayView|; this is a | 158 // The overlaid view. Owned by the caller of |InstallOverlayView|; this is a |
| 159 // weak reference. | 159 // weak reference. |
| 160 GtkWidget* overlaid_view_; | 160 GtkWidget* overlaid_view_; |
| 161 | 161 |
| 162 DISALLOW_COPY_AND_ASSIGN(TabContentsViewGtk); | 162 DISALLOW_COPY_AND_ASSIGN(TabContentsViewGtk); |
| 163 }; | 163 }; |
| 164 | 164 |
| 165 } // namespace content | 165 } // namespace content |
| 166 | 166 |
| 167 #endif // CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ | 167 #endif // CONTENT_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ |
| OLD | NEW |