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 virtual void DidNavigateMainFramePreCommit( | 472 virtual void DidNavigateMainFramePreCommit( |
473 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE; | 473 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE; |
474 virtual void DidNavigateMainFramePostCommit( | 474 virtual void DidNavigateMainFramePostCommit( |
475 const LoadCommittedDetails& details, | 475 const LoadCommittedDetails& details, |
476 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE; | 476 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE; |
477 virtual void DidNavigateAnyFramePostCommit( | 477 virtual void DidNavigateAnyFramePostCommit( |
478 RenderFrameHostImpl* render_frame_host, | 478 RenderFrameHostImpl* render_frame_host, |
479 const LoadCommittedDetails& details, | 479 const LoadCommittedDetails& details, |
480 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE; | 480 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE; |
481 virtual void SetMainFrameMimeType(const std::string& mime_type) OVERRIDE; | 481 virtual void SetMainFrameMimeType(const std::string& mime_type) OVERRIDE; |
482 virtual bool CanOverscrollContent() OVERRIDE; | 482 virtual bool CanOverscrollContent() const OVERRIDE; |
483 virtual void NotifyChangedNavigationState( | 483 virtual void NotifyChangedNavigationState( |
484 InvalidateTypes changed_flags) OVERRIDE; | 484 InvalidateTypes changed_flags) OVERRIDE; |
485 virtual void AboutToNavigateRenderFrame( | 485 virtual void AboutToNavigateRenderFrame( |
486 RenderFrameHostImpl* render_frame_host) OVERRIDE; | 486 RenderFrameHostImpl* render_frame_host) OVERRIDE; |
487 virtual void DidStartNavigationToPendingEntry( | 487 virtual void DidStartNavigationToPendingEntry( |
488 RenderFrameHostImpl* render_frame_host, | 488 RenderFrameHostImpl* render_frame_host, |
489 const GURL& url, | 489 const GURL& url, |
490 NavigationController::ReloadType reload_type) OVERRIDE; | 490 NavigationController::ReloadType reload_type) OVERRIDE; |
491 virtual void RequestOpenURL(RenderFrameHostImpl* render_frame_host, | 491 virtual void RequestOpenURL(RenderFrameHostImpl* render_frame_host, |
492 const OpenURLParams& params) OVERRIDE; | 492 const OpenURLParams& params) OVERRIDE; |
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 bool last_dialog_suppressed_; | 1129 bool last_dialog_suppressed_; |
1130 | 1130 |
1131 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; | 1131 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; |
1132 | 1132 |
1133 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1133 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1134 }; | 1134 }; |
1135 | 1135 |
1136 } // namespace content | 1136 } // namespace content |
1137 | 1137 |
1138 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1138 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |