| 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_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_ |
| 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/timer.h" | 10 #include "base/timer.h" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 68 |
| 69 // Overridden from WebContentsViewPort: | 69 // Overridden from WebContentsViewPort: |
| 70 virtual void CreateView( | 70 virtual void CreateView( |
| 71 const gfx::Size& initial_size, gfx::NativeView context) OVERRIDE; | 71 const gfx::Size& initial_size, gfx::NativeView context) OVERRIDE; |
| 72 virtual RenderWidgetHostView* CreateViewForWidget( | 72 virtual RenderWidgetHostView* CreateViewForWidget( |
| 73 RenderWidgetHost* render_widget_host) OVERRIDE; | 73 RenderWidgetHost* render_widget_host) OVERRIDE; |
| 74 virtual RenderWidgetHostView* CreateViewForPopupWidget( | 74 virtual RenderWidgetHostView* CreateViewForPopupWidget( |
| 75 RenderWidgetHost* render_widget_host) OVERRIDE; | 75 RenderWidgetHost* render_widget_host) OVERRIDE; |
| 76 virtual void SetPageTitle(const string16& title) OVERRIDE; | 76 virtual void SetPageTitle(const string16& title) OVERRIDE; |
| 77 virtual void RenderViewCreated(RenderViewHost* host) OVERRIDE; | 77 virtual void RenderViewCreated(RenderViewHost* host) OVERRIDE; |
| 78 virtual void RenderViewSwappedIn(RenderViewHost* host) OVERRIDE; | 78 virtual void RenderViewSwappedIn(RenderViewHost* new_host, |
| 79 RenderViewHost* old_host) OVERRIDE; |
| 79 | 80 |
| 80 // Implementation of RenderViewHostDelegateView. | 81 // Implementation of RenderViewHostDelegateView. |
| 81 virtual void ShowContextMenu( | 82 virtual void ShowContextMenu( |
| 82 const ContextMenuParams& params, | 83 const ContextMenuParams& params, |
| 83 ContextMenuSourceType type) OVERRIDE; | 84 ContextMenuSourceType type) OVERRIDE; |
| 84 virtual void ShowPopupMenu(const gfx::Rect& bounds, | 85 virtual void ShowPopupMenu(const gfx::Rect& bounds, |
| 85 int item_height, | 86 int item_height, |
| 86 double item_font_size, | 87 double item_font_size, |
| 87 int selected_item, | 88 int selected_item, |
| 88 const std::vector<WebMenuItem>& items, | 89 const std::vector<WebMenuItem>& items, |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 scoped_refptr<WebContentsDragWin> drag_handler_; | 140 scoped_refptr<WebContentsDragWin> drag_handler_; |
| 140 | 141 |
| 141 scoped_ptr<ui::HWNDMessageFilter> hwnd_message_filter_; | 142 scoped_ptr<ui::HWNDMessageFilter> hwnd_message_filter_; |
| 142 | 143 |
| 143 DISALLOW_COPY_AND_ASSIGN(WebContentsViewWin); | 144 DISALLOW_COPY_AND_ASSIGN(WebContentsViewWin); |
| 144 }; | 145 }; |
| 145 | 146 |
| 146 } // namespace content | 147 } // namespace content |
| 147 | 148 |
| 148 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_ | 149 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_WIN_H_ |
| OLD | NEW |