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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 18601004: Add the UMA PLT.BeginToFinish{,Doc}_AfterPreconnectRequest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: follow interface change Created 7 years, 5 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_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "content/public/renderer/render_frame.h" 9 #include "content/public/renderer/render_frame.h"
10 #include "ipc/ipc_message.h" 10 #include "ipc/ipc_message.h"
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 virtual void didChangeIcon(WebKit::WebFrame* frame, 118 virtual void didChangeIcon(WebKit::WebFrame* frame,
119 WebKit::WebIconURL::Type icon_type); 119 WebKit::WebIconURL::Type icon_type);
120 virtual void didFinishDocumentLoad(WebKit::WebFrame* frame); 120 virtual void didFinishDocumentLoad(WebKit::WebFrame* frame);
121 virtual void didHandleOnloadEvents(WebKit::WebFrame* frame); 121 virtual void didHandleOnloadEvents(WebKit::WebFrame* frame);
122 virtual void didFailLoad(WebKit::WebFrame* frame, 122 virtual void didFailLoad(WebKit::WebFrame* frame,
123 const WebKit::WebURLError& error); 123 const WebKit::WebURLError& error);
124 virtual void didFinishLoad(WebKit::WebFrame* frame); 124 virtual void didFinishLoad(WebKit::WebFrame* frame);
125 virtual void didNavigateWithinPage(WebKit::WebFrame* frame, 125 virtual void didNavigateWithinPage(WebKit::WebFrame* frame,
126 bool is_new_navigation); 126 bool is_new_navigation);
127 virtual void didUpdateCurrentHistoryItem(WebKit::WebFrame* frame); 127 virtual void didUpdateCurrentHistoryItem(WebKit::WebFrame* frame);
128 virtual void willRequestAfterPreconnect(WebKit::WebFrame* frame,
129 WebKit::WebURLRequest& request);
128 virtual void willSendRequest( 130 virtual void willSendRequest(
129 WebKit::WebFrame* frame, 131 WebKit::WebFrame* frame,
130 unsigned identifier, 132 unsigned identifier,
131 WebKit::WebURLRequest& request, 133 WebKit::WebURLRequest& request,
132 const WebKit::WebURLResponse& redirect_response); 134 const WebKit::WebURLResponse& redirect_response);
133 virtual void didReceiveResponse( 135 virtual void didReceiveResponse(
134 WebKit::WebFrame* frame, 136 WebKit::WebFrame* frame,
135 unsigned identifier, 137 unsigned identifier,
136 const WebKit::WebURLResponse& response); 138 const WebKit::WebURLResponse& response);
137 virtual void didFinishResourceLoad(WebKit::WebFrame* frame, 139 virtual void didFinishResourceLoad(WebKit::WebFrame* frame,
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 private: 215 private:
214 RenderViewImpl* render_view_; 216 RenderViewImpl* render_view_;
215 int routing_id_; 217 int routing_id_;
216 218
217 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 219 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
218 }; 220 };
219 221
220 } // namespace content 222 } // namespace content
221 223
222 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 224 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698