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

Side by Side Diff: content/public/browser/resource_request_details.h

Issue 184873004: Update resource requests to remove redundant frame ID. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update comments Created 6 years, 9 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
« no previous file with comments | « content/common/resource_messages.h ('k') | content/public/browser/resource_request_details.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 (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_PUBLIC_BROWSER_RESOURCE_REQUEST_DETAILS_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_RESOURCE_REQUEST_DETAILS_H_
6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_REQUEST_DETAILS_H_ 6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_REQUEST_DETAILS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "net/base/host_port_pair.h" 10 #include "net/base/host_port_pair.h"
(...skipping 21 matching lines...) Expand all
32 std::string method; 32 std::string method;
33 std::string referrer; 33 std::string referrer;
34 bool has_upload; 34 bool has_upload;
35 int load_flags; 35 int load_flags;
36 int origin_child_id; 36 int origin_child_id;
37 net::URLRequestStatus status; 37 net::URLRequestStatus status;
38 int ssl_cert_id; 38 int ssl_cert_id;
39 net::CertStatus ssl_cert_status; 39 net::CertStatus ssl_cert_status;
40 ResourceType::Type resource_type; 40 ResourceType::Type resource_type;
41 net::HostPortPair socket_address; 41 net::HostPortPair socket_address;
42 int64 frame_id; 42 int render_frame_id;
43 }; 43 };
44 44
45 // Details about a redirection of a resource request. 45 // Details about a redirection of a resource request.
46 struct ResourceRedirectDetails : public ResourceRequestDetails { 46 struct ResourceRedirectDetails : public ResourceRequestDetails {
47 ResourceRedirectDetails(const net::URLRequest* request, 47 ResourceRedirectDetails(const net::URLRequest* request,
48 int cert_id, 48 int cert_id,
49 const GURL& new_url); 49 const GURL& new_url);
50 virtual ~ResourceRedirectDetails(); 50 virtual ~ResourceRedirectDetails();
51 51
52 // The URL to which we are being redirected. 52 // The URL to which we are being redirected.
53 GURL new_url; 53 GURL new_url;
54 }; 54 };
55 55
56 } // namespace content 56 } // namespace content
57 57
58 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_REQUEST_DETAILS_H_ 58 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_REQUEST_DETAILS_H_
OLDNEW
« no previous file with comments | « content/common/resource_messages.h ('k') | content/public/browser/resource_request_details.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698