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_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 | 476 |
477 virtual void RenderWidgetDeleted( | 477 virtual void RenderWidgetDeleted( |
478 RenderWidgetHostImpl* render_widget_host) OVERRIDE; | 478 RenderWidgetHostImpl* render_widget_host) OVERRIDE; |
479 virtual bool PreHandleKeyboardEvent( | 479 virtual bool PreHandleKeyboardEvent( |
480 const NativeWebKeyboardEvent& event, | 480 const NativeWebKeyboardEvent& event, |
481 bool* is_keyboard_shortcut) OVERRIDE; | 481 bool* is_keyboard_shortcut) OVERRIDE; |
482 virtual void HandleKeyboardEvent( | 482 virtual void HandleKeyboardEvent( |
483 const NativeWebKeyboardEvent& event) OVERRIDE; | 483 const NativeWebKeyboardEvent& event) OVERRIDE; |
484 virtual bool PreHandleWheelEvent( | 484 virtual bool PreHandleWheelEvent( |
485 const blink::WebMouseWheelEvent& event) OVERRIDE; | 485 const blink::WebMouseWheelEvent& event) OVERRIDE; |
| 486 virtual bool PreHandleGestureEvent( |
| 487 const blink::WebGestureEvent& event) OVERRIDE; |
486 virtual void DidSendScreenRects(RenderWidgetHostImpl* rwh) OVERRIDE; | 488 virtual void DidSendScreenRects(RenderWidgetHostImpl* rwh) OVERRIDE; |
487 #if defined(OS_WIN) | 489 #if defined(OS_WIN) |
488 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; | 490 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; |
489 #endif | 491 #endif |
490 | 492 |
491 // RenderFrameHostManager::Delegate ------------------------------------------ | 493 // RenderFrameHostManager::Delegate ------------------------------------------ |
492 | 494 |
493 virtual bool CreateRenderViewForRenderManager( | 495 virtual bool CreateRenderViewForRenderManager( |
494 RenderViewHost* render_view_host, | 496 RenderViewHost* render_view_host, |
495 int opener_route_id, | 497 int opener_route_id, |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1041 // Whether this WebContents is responsible for displaying a subframe in a | 1043 // Whether this WebContents is responsible for displaying a subframe in a |
1042 // different process from its parent page. | 1044 // different process from its parent page. |
1043 bool is_subframe_; | 1045 bool is_subframe_; |
1044 | 1046 |
1045 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1047 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1046 }; | 1048 }; |
1047 | 1049 |
1048 } // namespace content | 1050 } // namespace content |
1049 | 1051 |
1050 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1052 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |