| 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_SHELL_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_ | 5 #ifndef CONTENT_SHELL_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_ |
| 6 #define CONTENT_SHELL_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_ | 6 #define CONTENT_SHELL_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "content/public/browser/web_contents.h" | 8 #include "content/public/browser/web_contents.h" |
| 9 #include "content/public/browser/web_contents_view_delegate.h" | 9 #include "content/public/browser/web_contents_view_delegate.h" |
| 10 #include "content/public/common/context_menu_params.h" | 10 #include "content/public/common/context_menu_params.h" |
| 11 #include "content/public/common/context_menu_source_type.h" |
| 11 | 12 |
| 12 #if defined(TOOLKIT_GTK) | 13 #if defined(TOOLKIT_GTK) |
| 13 #include "ui/base/gtk/gtk_signal.h" | 14 #include "ui/base/gtk/gtk_signal.h" |
| 14 #include "ui/base/gtk/owned_widget_gtk.h" | 15 #include "ui/base/gtk/owned_widget_gtk.h" |
| 15 #endif | 16 #endif |
| 16 | 17 |
| 17 namespace content { | 18 namespace content { |
| 18 | 19 |
| 19 class ShellWebContentsViewDelegate : public WebContentsViewDelegate { | 20 class ShellWebContentsViewDelegate : public WebContentsViewDelegate { |
| 20 public: | 21 public: |
| 21 explicit ShellWebContentsViewDelegate(WebContents* web_contents); | 22 explicit ShellWebContentsViewDelegate(WebContents* web_contents); |
| 22 virtual ~ShellWebContentsViewDelegate(); | 23 virtual ~ShellWebContentsViewDelegate(); |
| 23 | 24 |
| 24 // Overridden from WebContentsViewDelegate: | 25 // Overridden from WebContentsViewDelegate: |
| 25 virtual void ShowContextMenu( | 26 virtual void ShowContextMenu(const ContextMenuParams& params, |
| 26 const ContextMenuParams& params) OVERRIDE; | 27 const ContextMenuSourceType& type) OVERRIDE; |
| 27 virtual WebDragDestDelegate* GetDragDestDelegate() OVERRIDE; | 28 virtual WebDragDestDelegate* GetDragDestDelegate() OVERRIDE; |
| 28 | 29 |
| 29 #if defined(TOOLKIT_GTK) | 30 #if defined(TOOLKIT_GTK) |
| 30 virtual void Initialize(GtkWidget* expanded_container, | 31 virtual void Initialize(GtkWidget* expanded_container, |
| 31 ui::FocusStoreGtk* focus_store) OVERRIDE; | 32 ui::FocusStoreGtk* focus_store) OVERRIDE; |
| 32 virtual gfx::NativeView GetNativeView() const OVERRIDE; | 33 virtual gfx::NativeView GetNativeView() const OVERRIDE; |
| 33 virtual void Focus() OVERRIDE; | 34 virtual void Focus() OVERRIDE; |
| 34 virtual gboolean OnNativeViewFocusEvent(GtkWidget* widget, | 35 virtual gboolean OnNativeViewFocusEvent(GtkWidget* widget, |
| 35 GtkDirectionType type, | 36 GtkDirectionType type, |
| 36 gboolean* return_value) OVERRIDE; | 37 gboolean* return_value) OVERRIDE; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 63 CHROMEGTK_CALLBACK_0(ShellWebContentsViewDelegate, void, | 64 CHROMEGTK_CALLBACK_0(ShellWebContentsViewDelegate, void, |
| 64 OnInspectMenuActivated); | 65 OnInspectMenuActivated); |
| 65 #endif | 66 #endif |
| 66 | 67 |
| 67 DISALLOW_COPY_AND_ASSIGN(ShellWebContentsViewDelegate); | 68 DISALLOW_COPY_AND_ASSIGN(ShellWebContentsViewDelegate); |
| 68 }; | 69 }; |
| 69 | 70 |
| 70 } // namespace content | 71 } // namespace content |
| 71 | 72 |
| 72 #endif // CONTENT_SHELL_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_ | 73 #endif // CONTENT_SHELL_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_ |
| OLD | NEW |