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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
466 virtual void SetMainFrameMimeType(const std::string& mime_type) OVERRIDE; | 466 virtual void SetMainFrameMimeType(const std::string& mime_type) OVERRIDE; |
467 virtual bool CanOverscrollContent() OVERRIDE; | 467 virtual bool CanOverscrollContent() OVERRIDE; |
468 virtual void NotifyChangedNavigationState( | 468 virtual void NotifyChangedNavigationState( |
469 InvalidateTypes changed_flags) OVERRIDE; | 469 InvalidateTypes changed_flags) OVERRIDE; |
470 virtual void AboutToNavigateRenderFrame( | 470 virtual void AboutToNavigateRenderFrame( |
471 RenderFrameHostImpl* render_frame_host) OVERRIDE; | 471 RenderFrameHostImpl* render_frame_host) OVERRIDE; |
472 virtual void DidStartNavigationToPendingEntry( | 472 virtual void DidStartNavigationToPendingEntry( |
473 RenderFrameHostImpl* render_frame_host, | 473 RenderFrameHostImpl* render_frame_host, |
474 const GURL& url, | 474 const GURL& url, |
475 NavigationController::ReloadType reload_type) OVERRIDE; | 475 NavigationController::ReloadType reload_type) OVERRIDE; |
476 virtual void RequestOpenURL(const OpenURLParams& params) OVERRIDE; | 476 virtual void RequestOpenURL(RenderFrameHostImpl* render_frame_host, |
| 477 const OpenURLParams& params) OVERRIDE; |
477 | 478 |
478 // RenderWidgetHostDelegate -------------------------------------------------- | 479 // RenderWidgetHostDelegate -------------------------------------------------- |
479 | 480 |
480 virtual void RenderWidgetDeleted( | 481 virtual void RenderWidgetDeleted( |
481 RenderWidgetHostImpl* render_widget_host) OVERRIDE; | 482 RenderWidgetHostImpl* render_widget_host) OVERRIDE; |
482 virtual bool PreHandleKeyboardEvent( | 483 virtual bool PreHandleKeyboardEvent( |
483 const NativeWebKeyboardEvent& event, | 484 const NativeWebKeyboardEvent& event, |
484 bool* is_keyboard_shortcut) OVERRIDE; | 485 bool* is_keyboard_shortcut) OVERRIDE; |
485 virtual void HandleKeyboardEvent( | 486 virtual void HandleKeyboardEvent( |
486 const NativeWebKeyboardEvent& event) OVERRIDE; | 487 const NativeWebKeyboardEvent& event) OVERRIDE; |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1044 // Whether this WebContents is responsible for displaying a subframe in a | 1045 // Whether this WebContents is responsible for displaying a subframe in a |
1045 // different process from its parent page. | 1046 // different process from its parent page. |
1046 bool is_subframe_; | 1047 bool is_subframe_; |
1047 | 1048 |
1048 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1049 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1049 }; | 1050 }; |
1050 | 1051 |
1051 } // namespace content | 1052 } // namespace content |
1052 | 1053 |
1053 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1054 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |