| 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 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 | 493 |
| 494 // RenderWidgetHostDelegate -------------------------------------------------- | 494 // RenderWidgetHostDelegate -------------------------------------------------- |
| 495 | 495 |
| 496 virtual void RenderWidgetDeleted( | 496 virtual void RenderWidgetDeleted( |
| 497 RenderWidgetHostImpl* render_widget_host) OVERRIDE; | 497 RenderWidgetHostImpl* render_widget_host) OVERRIDE; |
| 498 virtual bool PreHandleKeyboardEvent( | 498 virtual bool PreHandleKeyboardEvent( |
| 499 const NativeWebKeyboardEvent& event, | 499 const NativeWebKeyboardEvent& event, |
| 500 bool* is_keyboard_shortcut) OVERRIDE; | 500 bool* is_keyboard_shortcut) OVERRIDE; |
| 501 virtual void HandleKeyboardEvent( | 501 virtual void HandleKeyboardEvent( |
| 502 const NativeWebKeyboardEvent& event) OVERRIDE; | 502 const NativeWebKeyboardEvent& event) OVERRIDE; |
| 503 virtual bool PreHandleWheelEvent( | 503 virtual bool HandleWheelEvent( |
| 504 const blink::WebMouseWheelEvent& event) OVERRIDE; | 504 const blink::WebMouseWheelEvent& event) OVERRIDE; |
| 505 virtual bool PreHandleGestureEvent( | 505 virtual bool PreHandleGestureEvent( |
| 506 const blink::WebGestureEvent& event) OVERRIDE; | 506 const blink::WebGestureEvent& event) OVERRIDE; |
| 507 virtual void DidSendScreenRects(RenderWidgetHostImpl* rwh) OVERRIDE; | 507 virtual void DidSendScreenRects(RenderWidgetHostImpl* rwh) OVERRIDE; |
| 508 #if defined(OS_WIN) | 508 #if defined(OS_WIN) |
| 509 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; | 509 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; |
| 510 #endif | 510 #endif |
| 511 | 511 |
| 512 // RenderFrameHostManager::Delegate ------------------------------------------ | 512 // RenderFrameHostManager::Delegate ------------------------------------------ |
| 513 | 513 |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1061 // Whether this WebContents is responsible for displaying a subframe in a | 1061 // Whether this WebContents is responsible for displaying a subframe in a |
| 1062 // different process from its parent page. | 1062 // different process from its parent page. |
| 1063 bool is_subframe_; | 1063 bool is_subframe_; |
| 1064 | 1064 |
| 1065 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1065 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1066 }; | 1066 }; |
| 1067 | 1067 |
| 1068 } // namespace content | 1068 } // namespace content |
| 1069 | 1069 |
| 1070 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1070 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |