| 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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 RenderFrameHostImpl* render_frame_host, | 508 RenderFrameHostImpl* render_frame_host, |
| 509 const GURL& url, | 509 const GURL& url, |
| 510 NavigationController::ReloadType reload_type) override; | 510 NavigationController::ReloadType reload_type) override; |
| 511 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, | 511 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, |
| 512 const OpenURLParams& params) override; | 512 const OpenURLParams& params) override; |
| 513 bool ShouldPreserveAbortedURLs() override; | 513 bool ShouldPreserveAbortedURLs() override; |
| 514 | 514 |
| 515 // RenderWidgetHostDelegate -------------------------------------------------- | 515 // RenderWidgetHostDelegate -------------------------------------------------- |
| 516 | 516 |
| 517 void RenderWidgetDeleted(RenderWidgetHostImpl* render_widget_host) override; | 517 void RenderWidgetDeleted(RenderWidgetHostImpl* render_widget_host) override; |
| 518 void RenderWidgetGotFocus(RenderWidgetHostImpl* render_widget_host) override; |
| 518 bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, | 519 bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, |
| 519 bool* is_keyboard_shortcut) override; | 520 bool* is_keyboard_shortcut) override; |
| 520 void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) override; | 521 void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) override; |
| 521 bool HandleWheelEvent(const blink::WebMouseWheelEvent& event) override; | 522 bool HandleWheelEvent(const blink::WebMouseWheelEvent& event) override; |
| 522 bool PreHandleGestureEvent(const blink::WebGestureEvent& event) override; | 523 bool PreHandleGestureEvent(const blink::WebGestureEvent& event) override; |
| 523 bool HandleGestureEvent(const blink::WebGestureEvent& event) override; | 524 bool HandleGestureEvent(const blink::WebGestureEvent& event) override; |
| 524 void DidSendScreenRects(RenderWidgetHostImpl* rwh) override; | 525 void DidSendScreenRects(RenderWidgetHostImpl* rwh) override; |
| 525 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override; | 526 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override; |
| 526 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager() | 527 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager() |
| 527 override; | 528 override; |
| (...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1213 scoped_ptr<WebContentsAudioMuter> audio_muter_; | 1214 scoped_ptr<WebContentsAudioMuter> audio_muter_; |
| 1214 | 1215 |
| 1215 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; | 1216 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; |
| 1216 | 1217 |
| 1217 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1218 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1218 }; | 1219 }; |
| 1219 | 1220 |
| 1220 } // namespace content | 1221 } // namespace content |
| 1221 | 1222 |
| 1222 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1223 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |