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

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: revert unwanted 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 virtual void didChangeIcon(WebKit::WebFrame* frame, 114 virtual void didChangeIcon(WebKit::WebFrame* frame,
115 WebKit::WebIconURL::Type icon_type); 115 WebKit::WebIconURL::Type icon_type);
116 virtual void didFinishDocumentLoad(WebKit::WebFrame* frame); 116 virtual void didFinishDocumentLoad(WebKit::WebFrame* frame);
117 virtual void didHandleOnloadEvents(WebKit::WebFrame* frame); 117 virtual void didHandleOnloadEvents(WebKit::WebFrame* frame);
118 virtual void didFailLoad(WebKit::WebFrame* frame, 118 virtual void didFailLoad(WebKit::WebFrame* frame,
119 const WebKit::WebURLError& error); 119 const WebKit::WebURLError& error);
120 virtual void didFinishLoad(WebKit::WebFrame* frame); 120 virtual void didFinishLoad(WebKit::WebFrame* frame);
121 virtual void didNavigateWithinPage(WebKit::WebFrame* frame, 121 virtual void didNavigateWithinPage(WebKit::WebFrame* frame,
122 bool is_new_navigation); 122 bool is_new_navigation);
123 virtual void didUpdateCurrentHistoryItem(WebKit::WebFrame* frame); 123 virtual void didUpdateCurrentHistoryItem(WebKit::WebFrame* frame);
124 virtual void willRequestAfterPreconnect(WebKit::WebFrame* frame,
125 WebKit::WebURLRequest& request);
124 virtual void willSendRequest( 126 virtual void willSendRequest(
125 WebKit::WebFrame* frame, 127 WebKit::WebFrame* frame,
126 unsigned identifier, 128 unsigned identifier,
127 WebKit::WebURLRequest& request, 129 WebKit::WebURLRequest& request,
128 const WebKit::WebURLResponse& redirect_response); 130 const WebKit::WebURLResponse& redirect_response);
129 virtual void didReceiveResponse( 131 virtual void didReceiveResponse(
130 WebKit::WebFrame* frame, 132 WebKit::WebFrame* frame,
131 unsigned identifier, 133 unsigned identifier,
132 const WebKit::WebURLResponse& response); 134 const WebKit::WebURLResponse& response);
133 virtual void didFinishResourceLoad(WebKit::WebFrame* frame, 135 virtual void didFinishResourceLoad(WebKit::WebFrame* frame,
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 private: 211 private:
210 RenderViewImpl* render_view_; 212 RenderViewImpl* render_view_;
211 int routing_id_; 213 int routing_id_;
212 214
213 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 215 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
214 }; 216 };
215 217
216 } // namespace content 218 } // namespace content
217 219
218 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 220 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698