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

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 2657323003: Convert HistoryTabHelper to use the new navigation callbacks. (Closed)
Patch Set: better fix to send this data from the renderer initially Created 3 years, 10 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 const base::string16& source_id); 665 const base::string16& source_id);
666 void OnDetach(); 666 void OnDetach();
667 void OnFrameFocused(); 667 void OnFrameFocused();
668 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); 668 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params);
669 void OnCancelInitialHistoryLoad(); 669 void OnCancelInitialHistoryLoad();
670 void OnDocumentOnLoadCompleted( 670 void OnDocumentOnLoadCompleted(
671 FrameMsg_UILoadMetricsReportType::Value report_type, 671 FrameMsg_UILoadMetricsReportType::Value report_type,
672 base::TimeTicks ui_timestamp); 672 base::TimeTicks ui_timestamp);
673 void OnDidStartProvisionalLoad( 673 void OnDidStartProvisionalLoad(
674 const GURL& url, 674 const GURL& url,
675 const std::vector<GURL>& redirect_chain,
675 const base::TimeTicks& navigation_start); 676 const base::TimeTicks& navigation_start);
676 void OnDidFailProvisionalLoadWithError( 677 void OnDidFailProvisionalLoadWithError(
677 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); 678 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params);
678 void OnDidFailLoadWithError( 679 void OnDidFailLoadWithError(
679 const GURL& url, 680 const GURL& url,
680 int error_code, 681 int error_code,
681 const base::string16& error_description, 682 const base::string16& error_description,
682 bool was_ignored_by_handler); 683 bool was_ignored_by_handler);
683 void OnDidCommitProvisionalLoad(const IPC::Message& msg); 684 void OnDidCommitProvisionalLoad(const IPC::Message& msg);
684 void OnUpdateState(const PageState& state); 685 void OnUpdateState(const PageState& state);
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
1141 1142
1142 // NOTE: This must be the last member. 1143 // NOTE: This must be the last member.
1143 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 1144 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
1144 1145
1145 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 1146 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
1146 }; 1147 };
1147 1148
1148 } // namespace content 1149 } // namespace content
1149 1150
1150 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 1151 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698