| 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 | 472 |
| 473 virtual void RenderWidgetDeleted( | 473 virtual void RenderWidgetDeleted( |
| 474 RenderWidgetHostImpl* render_widget_host) OVERRIDE; | 474 RenderWidgetHostImpl* render_widget_host) OVERRIDE; |
| 475 virtual bool PreHandleKeyboardEvent( | 475 virtual bool PreHandleKeyboardEvent( |
| 476 const NativeWebKeyboardEvent& event, | 476 const NativeWebKeyboardEvent& event, |
| 477 bool* is_keyboard_shortcut) OVERRIDE; | 477 bool* is_keyboard_shortcut) OVERRIDE; |
| 478 virtual void HandleKeyboardEvent( | 478 virtual void HandleKeyboardEvent( |
| 479 const NativeWebKeyboardEvent& event) OVERRIDE; | 479 const NativeWebKeyboardEvent& event) OVERRIDE; |
| 480 virtual bool PreHandleWheelEvent( | 480 virtual bool PreHandleWheelEvent( |
| 481 const blink::WebMouseWheelEvent& event) OVERRIDE; | 481 const blink::WebMouseWheelEvent& event) OVERRIDE; |
| 482 virtual bool PreHandleGestureEvent( |
| 483 const blink::WebGestureEvent& event) OVERRIDE; |
| 482 virtual void DidSendScreenRects(RenderWidgetHostImpl* rwh) OVERRIDE; | 484 virtual void DidSendScreenRects(RenderWidgetHostImpl* rwh) OVERRIDE; |
| 483 #if defined(OS_WIN) && defined(USE_AURA) | 485 #if defined(OS_WIN) && defined(USE_AURA) |
| 484 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; | 486 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; |
| 485 #endif | 487 #endif |
| 486 | 488 |
| 487 // RenderFrameHostManager::Delegate ------------------------------------------ | 489 // RenderFrameHostManager::Delegate ------------------------------------------ |
| 488 | 490 |
| 489 virtual bool CreateRenderViewForRenderManager( | 491 virtual bool CreateRenderViewForRenderManager( |
| 490 RenderViewHost* render_view_host, int opener_route_id) OVERRIDE; | 492 RenderViewHost* render_view_host, int opener_route_id) OVERRIDE; |
| 491 virtual void BeforeUnloadFiredFromRenderManager( | 493 virtual void BeforeUnloadFiredFromRenderManager( |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1044 // Whether this WebContents is responsible for displaying a subframe in a | 1046 // Whether this WebContents is responsible for displaying a subframe in a |
| 1045 // different process from its parent page. | 1047 // different process from its parent page. |
| 1046 bool is_subframe_; | 1048 bool is_subframe_; |
| 1047 | 1049 |
| 1048 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1050 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1049 }; | 1051 }; |
| 1050 | 1052 |
| 1051 } // namespace content | 1053 } // namespace content |
| 1052 | 1054 |
| 1053 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1055 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |