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

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

Issue 2398753002: Record UMA stats for subframes history navigations. (Closed)
Patch Set: Fix nits Created 4 years, 2 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
« no previous file with comments | « content/browser/frame_host/navigator.cc ('k') | content/browser/frame_host/navigator_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_NAVIGATOR_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/containers/scoped_ptr_hash_map.h" 10 #include "base/containers/scoped_ptr_hash_map.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 int error_code, 54 int error_code,
55 const base::string16& error_description, 55 const base::string16& error_description,
56 bool was_ignored_by_handler) override; 56 bool was_ignored_by_handler) override;
57 void DidNavigate( 57 void DidNavigate(
58 RenderFrameHostImpl* render_frame_host, 58 RenderFrameHostImpl* render_frame_host,
59 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) override; 59 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) override;
60 bool NavigateToPendingEntry(FrameTreeNode* frame_tree_node, 60 bool NavigateToPendingEntry(FrameTreeNode* frame_tree_node,
61 const FrameNavigationEntry& frame_entry, 61 const FrameNavigationEntry& frame_entry,
62 ReloadType reload_type, 62 ReloadType reload_type,
63 bool is_same_document_history_load) override; 63 bool is_same_document_history_load) override;
64 bool NavigateNewChildFrame(RenderFrameHostImpl* render_frame_host) override; 64 bool NavigateNewChildFrame(RenderFrameHostImpl* render_frame_host,
65 const GURL& default_url) override;
65 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, 66 void RequestOpenURL(RenderFrameHostImpl* render_frame_host,
66 const GURL& url, 67 const GURL& url,
67 bool uses_post, 68 bool uses_post,
68 const scoped_refptr<ResourceRequestBodyImpl>& body, 69 const scoped_refptr<ResourceRequestBodyImpl>& body,
69 SiteInstance* source_site_instance, 70 SiteInstance* source_site_instance,
70 const Referrer& referrer, 71 const Referrer& referrer,
71 WindowOpenDisposition disposition, 72 WindowOpenDisposition disposition,
72 bool should_replace_current_entry, 73 bool should_replace_current_entry,
73 bool user_gesture) override; 74 bool user_gesture) override;
74 void RequestTransferURL( 75 void RequestTransferURL(
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 NavigatorDelegate* delegate_; 158 NavigatorDelegate* delegate_;
158 159
159 std::unique_ptr<NavigatorImpl::NavigationMetricsData> navigation_data_; 160 std::unique_ptr<NavigatorImpl::NavigationMetricsData> navigation_data_;
160 161
161 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl); 162 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl);
162 }; 163 };
163 164
164 } // namespace content 165 } // namespace content
165 166
166 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ 167 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigator.cc ('k') | content/browser/frame_host/navigator_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698