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

Side by Side Diff: content/browser/renderer_host/resource_dispatcher_host_request_info.cc

Issue 9348109: Add extra data to BrowserContext so that content layer and other embedders can stash data with it t… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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 | Annotate | Revision Log
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 #include "content/browser/renderer_host/resource_dispatcher_host_request_info.h" 5 #include "content/browser/renderer_host/resource_dispatcher_host_request_info.h"
6 6
7 #include "content/browser/renderer_host/resource_handler.h" 7 #include "content/browser/renderer_host/resource_handler.h"
8 #include "content/browser/ssl/ssl_client_auth_handler.h" 8 #include "content/browser/ssl/ssl_client_auth_handler.h"
9 #include "content/public/browser/resource_dispatcher_host_login_delegate.h" 9 #include "content/public/browser/resource_dispatcher_host_login_delegate.h"
10 #include "net/url_request/url_request.h"
10 #include "webkit/blob/blob_data.h" 11 #include "webkit/blob/blob_data.h"
11 12
12 ResourceDispatcherHostRequestInfo::ResourceDispatcherHostRequestInfo( 13 ResourceDispatcherHostRequestInfo::ResourceDispatcherHostRequestInfo(
13 ResourceHandler* handler, 14 ResourceHandler* handler,
14 content::ProcessType process_type, 15 content::ProcessType process_type,
15 int child_id, 16 int child_id,
16 int route_id, 17 int route_id,
17 int origin_pid, 18 int origin_pid,
18 int request_id, 19 int request_id,
19 bool is_main_frame, 20 bool is_main_frame,
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 75
75 void ResourceDispatcherHostRequestInfo::set_ssl_client_auth_handler( 76 void ResourceDispatcherHostRequestInfo::set_ssl_client_auth_handler(
76 SSLClientAuthHandler* s) { 77 SSLClientAuthHandler* s) {
77 ssl_client_auth_handler_ = s; 78 ssl_client_auth_handler_ = s;
78 } 79 }
79 80
80 void ResourceDispatcherHostRequestInfo::set_requested_blob_data( 81 void ResourceDispatcherHostRequestInfo::set_requested_blob_data(
81 webkit_blob::BlobData* data) { 82 webkit_blob::BlobData* data) {
82 requested_blob_data_ = data; 83 requested_blob_data_ = data;
83 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698