| 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 const GURL& url, | 529 const GURL& url, |
| 530 NavigationController::ReloadType reload_type) override; | 530 NavigationController::ReloadType reload_type) override; |
| 531 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, | 531 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, |
| 532 const OpenURLParams& params) override; | 532 const OpenURLParams& params) override; |
| 533 bool ShouldPreserveAbortedURLs() override; | 533 bool ShouldPreserveAbortedURLs() override; |
| 534 | 534 |
| 535 // RenderWidgetHostDelegate -------------------------------------------------- | 535 // RenderWidgetHostDelegate -------------------------------------------------- |
| 536 | 536 |
| 537 void RenderWidgetDeleted(RenderWidgetHostImpl* render_widget_host) override; | 537 void RenderWidgetDeleted(RenderWidgetHostImpl* render_widget_host) override; |
| 538 void RenderWidgetGotFocus(RenderWidgetHostImpl* render_widget_host) override; | 538 void RenderWidgetGotFocus(RenderWidgetHostImpl* render_widget_host) override; |
| 539 void RenderWidgetWasResized( | 539 void RenderWidgetWasResized(RenderWidgetHostImpl* render_widget_host, |
| 540 RenderWidgetHostImpl* render_widget_host) override; | 540 bool width_changed) override; |
| 541 bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, | 541 bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, |
| 542 bool* is_keyboard_shortcut) override; | 542 bool* is_keyboard_shortcut) override; |
| 543 void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) override; | 543 void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) override; |
| 544 bool HandleWheelEvent(const blink::WebMouseWheelEvent& event) override; | 544 bool HandleWheelEvent(const blink::WebMouseWheelEvent& event) override; |
| 545 bool PreHandleGestureEvent(const blink::WebGestureEvent& event) override; | 545 bool PreHandleGestureEvent(const blink::WebGestureEvent& event) override; |
| 546 bool HandleGestureEvent(const blink::WebGestureEvent& event) override; | 546 bool HandleGestureEvent(const blink::WebGestureEvent& event) override; |
| 547 void DidSendScreenRects(RenderWidgetHostImpl* rwh) override; | 547 void DidSendScreenRects(RenderWidgetHostImpl* rwh) override; |
| 548 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override; | 548 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override; |
| 549 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager() | 549 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager() |
| 550 override; | 550 override; |
| (...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1269 // Adds/removes a callback called on creation of each new WebContents. | 1269 // Adds/removes a callback called on creation of each new WebContents. |
| 1270 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1270 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1271 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1271 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1272 | 1272 |
| 1273 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1273 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1274 }; | 1274 }; |
| 1275 | 1275 |
| 1276 } // namespace content | 1276 } // namespace content |
| 1277 | 1277 |
| 1278 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1278 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |