Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 317703004: Simplify AreURLsInPageNavigation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 virtual void DidRedirectProvisionalLoad( 465 virtual void DidRedirectProvisionalLoad(
466 RenderFrameHostImpl* render_frame_host, 466 RenderFrameHostImpl* render_frame_host,
467 const GURL& validated_target_url) OVERRIDE; 467 const GURL& validated_target_url) OVERRIDE;
468 virtual void DidCommitProvisionalLoad( 468 virtual void DidCommitProvisionalLoad(
469 RenderFrameHostImpl* render_frame_host, 469 RenderFrameHostImpl* render_frame_host,
470 const base::string16& frame_unique_name, 470 const base::string16& frame_unique_name,
471 bool is_main_frame, 471 bool is_main_frame,
472 const GURL& url, 472 const GURL& url,
473 PageTransition transition_type) OVERRIDE; 473 PageTransition transition_type) OVERRIDE;
474 virtual void DidNavigateMainFramePreCommit( 474 virtual void DidNavigateMainFramePreCommit(
475 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE; 475 bool navigation_is_within_page) OVERRIDE;
476 virtual void DidNavigateMainFramePostCommit( 476 virtual void DidNavigateMainFramePostCommit(
477 const LoadCommittedDetails& details, 477 const LoadCommittedDetails& details,
478 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE; 478 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE;
479 virtual void DidNavigateAnyFramePostCommit( 479 virtual void DidNavigateAnyFramePostCommit(
480 RenderFrameHostImpl* render_frame_host, 480 RenderFrameHostImpl* render_frame_host,
481 const LoadCommittedDetails& details, 481 const LoadCommittedDetails& details,
482 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE; 482 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE;
483 virtual void SetMainFrameMimeType(const std::string& mime_type) OVERRIDE; 483 virtual void SetMainFrameMimeType(const std::string& mime_type) OVERRIDE;
484 virtual bool CanOverscrollContent() const OVERRIDE; 484 virtual bool CanOverscrollContent() const OVERRIDE;
485 virtual void NotifyChangedNavigationState( 485 virtual void NotifyChangedNavigationState(
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after
1144 1144
1145 scoped_ptr<ScreenOrientationDispatcherHost> 1145 scoped_ptr<ScreenOrientationDispatcherHost>
1146 screen_orientation_dispatcher_host_; 1146 screen_orientation_dispatcher_host_;
1147 1147
1148 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1148 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1149 }; 1149 };
1150 1150
1151 } // namespace content 1151 } // namespace content
1152 1152
1153 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1153 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigator_impl.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698