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

Side by Side Diff: content/child/resource_dispatcher.cc

Issue 22254005: UMA data collector for cross-site documents(XSD) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Names are corrected Created 7 years, 4 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/child/resource_dispatcher.h ('k') | content/child/resource_dispatcher_unittest.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 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc e-loading 5 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc e-loading
6 6
7 #include "content/child/resource_dispatcher.h" 7 #include "content/child/resource_dispatcher.h"
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/command_line.h"
11 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
12 #include "base/debug/alias.h" 13 #include "base/debug/alias.h"
13 #include "base/files/file_path.h" 14 #include "base/files/file_path.h"
14 #include "base/memory/shared_memory.h" 15 #include "base/memory/shared_memory.h"
15 #include "base/message_loop/message_loop.h" 16 #include "base/message_loop/message_loop.h"
16 #include "base/metrics/histogram.h" 17 #include "base/metrics/histogram.h"
17 #include "base/strings/string_util.h" 18 #include "base/strings/string_util.h"
18 #include "content/child/request_extra_data.h" 19 #include "content/child/request_extra_data.h"
20 #include "content/child/site_isolation_policy.h"
19 #include "content/common/inter_process_time_ticks_converter.h" 21 #include "content/common/inter_process_time_ticks_converter.h"
20 #include "content/common/resource_messages.h" 22 #include "content/common/resource_messages.h"
21 #include "content/public/child/resource_dispatcher_delegate.h" 23 #include "content/public/child/resource_dispatcher_delegate.h"
24 #include "content/public/common/content_switches.h"
22 #include "content/public/common/resource_response.h" 25 #include "content/public/common/resource_response.h"
23 #include "net/base/net_errors.h" 26 #include "net/base/net_errors.h"
24 #include "net/base/net_util.h" 27 #include "net/base/net_util.h"
25 #include "net/base/request_priority.h" 28 #include "net/base/request_priority.h"
26 #include "net/http/http_response_headers.h" 29 #include "net/http/http_response_headers.h"
27 #include "webkit/common/resource_type.h" 30 #include "webkit/common/resource_type.h"
28 31
29 using webkit_glue::ResourceLoaderBridge; 32 using webkit_glue::ResourceLoaderBridge;
30 using webkit_glue::ResourceRequestBody; 33 using webkit_glue::ResourceRequestBody;
31 using webkit_glue::ResourceResponseInfo; 34 using webkit_glue::ResourceResponseInfo;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 // The request to send, created on initialization for modification and 92 // The request to send, created on initialization for modification and
90 // appending data. 93 // appending data.
91 ResourceHostMsg_Request request_; 94 ResourceHostMsg_Request request_;
92 95
93 // ID for the request, valid once Start()ed, -1 if not valid yet. 96 // ID for the request, valid once Start()ed, -1 if not valid yet.
94 int request_id_; 97 int request_id_;
95 98
96 // The routing id used when sending IPC messages. 99 // The routing id used when sending IPC messages.
97 int routing_id_; 100 int routing_id_;
98 101
102 // The security origin of the frame that initiates this request.
103 GURL frame_origin_;
104
99 bool is_synchronous_request_; 105 bool is_synchronous_request_;
100 }; 106 };
101 107
102 IPCResourceLoaderBridge::IPCResourceLoaderBridge( 108 IPCResourceLoaderBridge::IPCResourceLoaderBridge(
103 ResourceDispatcher* dispatcher, 109 ResourceDispatcher* dispatcher,
104 const ResourceLoaderBridge::RequestInfo& request_info) 110 const ResourceLoaderBridge::RequestInfo& request_info)
105 : peer_(NULL), 111 : peer_(NULL),
106 dispatcher_(dispatcher), 112 dispatcher_(dispatcher),
107 request_id_(-1), 113 request_id_(-1),
108 routing_id_(request_info.routing_id), 114 routing_id_(request_info.routing_id),
(...skipping 19 matching lines...) Expand all
128 request_.is_main_frame = extra_data->is_main_frame(); 134 request_.is_main_frame = extra_data->is_main_frame();
129 request_.frame_id = extra_data->frame_id(); 135 request_.frame_id = extra_data->frame_id();
130 request_.parent_is_main_frame = extra_data->parent_is_main_frame(); 136 request_.parent_is_main_frame = extra_data->parent_is_main_frame();
131 request_.parent_frame_id = extra_data->parent_frame_id(); 137 request_.parent_frame_id = extra_data->parent_frame_id();
132 request_.allow_download = extra_data->allow_download(); 138 request_.allow_download = extra_data->allow_download();
133 request_.transition_type = extra_data->transition_type(); 139 request_.transition_type = extra_data->transition_type();
134 request_.transferred_request_child_id = 140 request_.transferred_request_child_id =
135 extra_data->transferred_request_child_id(); 141 extra_data->transferred_request_child_id();
136 request_.transferred_request_request_id = 142 request_.transferred_request_request_id =
137 extra_data->transferred_request_request_id(); 143 extra_data->transferred_request_request_id();
144 frame_origin_ = extra_data->frame_origin();
138 } else { 145 } else {
139 request_.is_main_frame = false; 146 request_.is_main_frame = false;
140 request_.frame_id = -1; 147 request_.frame_id = -1;
141 request_.parent_is_main_frame = false; 148 request_.parent_is_main_frame = false;
142 request_.parent_frame_id = -1; 149 request_.parent_frame_id = -1;
143 request_.allow_download = true; 150 request_.allow_download = true;
144 request_.transition_type = PAGE_TRANSITION_LINK; 151 request_.transition_type = PAGE_TRANSITION_LINK;
145 request_.transferred_request_child_id = -1; 152 request_.transferred_request_child_id = -1;
146 request_.transferred_request_request_id = -1; 153 request_.transferred_request_request_id = -1;
147 } 154 }
(...skipping 24 matching lines...) Expand all
172 bool IPCResourceLoaderBridge::Start(Peer* peer) { 179 bool IPCResourceLoaderBridge::Start(Peer* peer) {
173 if (request_id_ != -1) { 180 if (request_id_ != -1) {
174 NOTREACHED() << "Starting a request twice"; 181 NOTREACHED() << "Starting a request twice";
175 return false; 182 return false;
176 } 183 }
177 184
178 peer_ = peer; 185 peer_ = peer;
179 186
180 // generate the request ID, and append it to the message 187 // generate the request ID, and append it to the message
181 request_id_ = dispatcher_->AddPendingRequest( 188 request_id_ = dispatcher_->AddPendingRequest(
182 peer_, request_.resource_type, request_.url); 189 peer_, request_.resource_type, frame_origin_, request_.url);
183 190
184 return dispatcher_->message_sender()->Send( 191 return dispatcher_->message_sender()->Send(
185 new ResourceHostMsg_RequestResource(routing_id_, request_id_, request_)); 192 new ResourceHostMsg_RequestResource(routing_id_, request_id_, request_));
186 } 193 }
187 194
188 void IPCResourceLoaderBridge::Cancel() { 195 void IPCResourceLoaderBridge::Cancel() {
189 if (request_id_ < 0) { 196 if (request_id_ < 0) {
190 NOTREACHED() << "Trying to cancel an unstarted request"; 197 NOTREACHED() << "Trying to cancel an unstarted request";
191 return; 198 return;
192 } 199 }
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 if (delegate_) { 346 if (delegate_) {
340 ResourceLoaderBridge::Peer* new_peer = 347 ResourceLoaderBridge::Peer* new_peer =
341 delegate_->OnReceivedResponse( 348 delegate_->OnReceivedResponse(
342 request_info->peer, response_head.mime_type, request_info->url); 349 request_info->peer, response_head.mime_type, request_info->url);
343 if (new_peer) 350 if (new_peer)
344 request_info->peer = new_peer; 351 request_info->peer = new_peer;
345 } 352 }
346 353
347 ResourceResponseInfo renderer_response_info; 354 ResourceResponseInfo renderer_response_info;
348 ToResourceResponseInfo(*request_info, response_head, &renderer_response_info); 355 ToResourceResponseInfo(*request_info, response_head, &renderer_response_info);
356 SiteIsolationPolicy::OnReceivedResponse(request_id,
357 request_info->frame_origin,
358 request_info->response_url,
359 request_info->resource_type,
360 renderer_response_info);
349 request_info->peer->OnReceivedResponse(renderer_response_info); 361 request_info->peer->OnReceivedResponse(renderer_response_info);
350 } 362 }
351 363
352 void ResourceDispatcher::OnReceivedCachedMetadata( 364 void ResourceDispatcher::OnReceivedCachedMetadata(
353 int request_id, const std::vector<char>& data) { 365 int request_id, const std::vector<char>& data) {
354 PendingRequestInfo* request_info = GetPendingRequestInfo(request_id); 366 PendingRequestInfo* request_info = GetPendingRequestInfo(request_id);
355 if (!request_info) 367 if (!request_info)
356 return; 368 return;
357 369
358 if (data.size()) 370 if (data.size())
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 // Ensure that the SHM buffer remains valid for the duration of this scope. 415 // Ensure that the SHM buffer remains valid for the duration of this scope.
404 // It is possible for CancelPendingRequest() to be called before we exit 416 // It is possible for CancelPendingRequest() to be called before we exit
405 // this scope. 417 // this scope.
406 linked_ptr<base::SharedMemory> retain_buffer(request_info->buffer); 418 linked_ptr<base::SharedMemory> retain_buffer(request_info->buffer);
407 419
408 base::TimeTicks time_start = base::TimeTicks::Now(); 420 base::TimeTicks time_start = base::TimeTicks::Now();
409 421
410 const char* data_ptr = static_cast<char*>(request_info->buffer->memory()); 422 const char* data_ptr = static_cast<char*>(request_info->buffer->memory());
411 CHECK(data_ptr); 423 CHECK(data_ptr);
412 CHECK(data_ptr + data_offset); 424 CHECK(data_ptr + data_offset);
413 425
darin (slow to review) 2013/08/22 21:50:42 perhaps another option here is to call a method on
dsjang 2013/08/22 22:30:19 Done.
414 request_info->peer->OnReceivedData( 426 // Check whether this response data is compliant with our cross-site
415 data_ptr + data_offset, 427 // document blocking policy.
416 data_length, 428 bool blocked_response = SiteIsolationPolicy::ShouldBlockResponse(
417 encoded_data_length); 429 request_id, data_ptr + data_offset, data_length);
430
431 // We block a response when the command line switch is on.
432 const CommandLine& command_line = *CommandLine::ForCurrentProcess();
433 if (blocked_response &&
434 command_line.HasSwitch(switches::kBlockCrossSiteDocuments)) {
435 // If data_offset is not-zero, this is not the first data packet for
436 // this request. We just ignore it.
437 if (data_offset == 0) {
438 // If we decide to block the response data, we just return an empty
439 // one-character string as response data. This is needed to trigger
440 // parsing errors in image decoders, etc.
441 LOG(ERROR) << request_info->response_url
442 << " is blocked as an illegal cross-site document from "
443 << request_info->frame_origin;
444 const char* empty_data_ptr = " ";
445 request_info->peer->OnReceivedData(empty_data_ptr, 1, 1);
446 }
447 } else {
448 request_info->peer->OnReceivedData(
449 data_ptr + data_offset,
450 data_length,
451 encoded_data_length);
452 }
418 453
419 UMA_HISTOGRAM_TIMES("ResourceDispatcher.OnReceivedDataTime", 454 UMA_HISTOGRAM_TIMES("ResourceDispatcher.OnReceivedDataTime",
420 base::TimeTicks::Now() - time_start); 455 base::TimeTicks::Now() - time_start);
421 } 456 }
422 457
423 // Acknowledge the reception of this data. 458 // Acknowledge the reception of this data.
424 message_sender()->Send( 459 message_sender()->Send(
425 new ResourceHostMsg_DataReceived_ACK(message.routing_id(), request_id)); 460 new ResourceHostMsg_DataReceived_ACK(message.routing_id(), request_id));
426 } 461 }
427 462
(...skipping 27 matching lines...) Expand all
455 ResourceResponseInfo renderer_response_info; 490 ResourceResponseInfo renderer_response_info;
456 ToResourceResponseInfo(*request_info, response_head, &renderer_response_info); 491 ToResourceResponseInfo(*request_info, response_head, &renderer_response_info);
457 if (request_info->peer->OnReceivedRedirect(new_url, renderer_response_info, 492 if (request_info->peer->OnReceivedRedirect(new_url, renderer_response_info,
458 &has_new_first_party_for_cookies, 493 &has_new_first_party_for_cookies,
459 &new_first_party_for_cookies)) { 494 &new_first_party_for_cookies)) {
460 // Double-check if the request is still around. The call above could 495 // Double-check if the request is still around. The call above could
461 // potentially remove it. 496 // potentially remove it.
462 request_info = GetPendingRequestInfo(request_id); 497 request_info = GetPendingRequestInfo(request_id);
463 if (!request_info) 498 if (!request_info)
464 return; 499 return;
500 // We update the response_url here so that we can send it to
501 // SiteIsolationPolicy later when OnReceivedResponse is called.
502 request_info->response_url = new_url;
465 request_info->pending_redirect_message.reset( 503 request_info->pending_redirect_message.reset(
466 new ResourceHostMsg_FollowRedirect(routing_id, request_id, 504 new ResourceHostMsg_FollowRedirect(routing_id, request_id,
467 has_new_first_party_for_cookies, 505 has_new_first_party_for_cookies,
468 new_first_party_for_cookies)); 506 new_first_party_for_cookies));
469 if (!request_info->is_deferred) { 507 if (!request_info->is_deferred) {
470 FollowPendingRedirect(request_id, *request_info); 508 FollowPendingRedirect(request_id, *request_info);
471 } 509 }
472 } else { 510 } else {
473 CancelPendingRequest(routing_id, request_id); 511 CancelPendingRequest(routing_id, request_id);
474 } 512 }
475 } 513 }
476 514
477 void ResourceDispatcher::FollowPendingRedirect( 515 void ResourceDispatcher::FollowPendingRedirect(
478 int request_id, 516 int request_id,
479 PendingRequestInfo& request_info) { 517 PendingRequestInfo& request_info) {
480 IPC::Message* msg = request_info.pending_redirect_message.release(); 518 IPC::Message* msg = request_info.pending_redirect_message.release();
481 if (msg) 519 if (msg)
482 message_sender()->Send(msg); 520 message_sender()->Send(msg);
483 } 521 }
484 522
485 void ResourceDispatcher::OnRequestComplete( 523 void ResourceDispatcher::OnRequestComplete(
486 int request_id, 524 int request_id,
487 int error_code, 525 int error_code,
488 bool was_ignored_by_handler, 526 bool was_ignored_by_handler,
489 const std::string& security_info, 527 const std::string& security_info,
490 const base::TimeTicks& browser_completion_time) { 528 const base::TimeTicks& browser_completion_time) {
529 SiteIsolationPolicy::OnRequestComplete(request_id);
530
491 PendingRequestInfo* request_info = GetPendingRequestInfo(request_id); 531 PendingRequestInfo* request_info = GetPendingRequestInfo(request_id);
492 if (!request_info) 532 if (!request_info)
493 return; 533 return;
494 request_info->completion_time = ConsumeIOTimestamp(); 534 request_info->completion_time = ConsumeIOTimestamp();
495 request_info->buffer.reset(); 535 request_info->buffer.reset();
496 request_info->buffer_size = 0; 536 request_info->buffer_size = 0;
497 537
498 ResourceLoaderBridge::Peer* peer = request_info->peer; 538 ResourceLoaderBridge::Peer* peer = request_info->peer;
499 539
500 if (delegate_) { 540 if (delegate_) {
501 ResourceLoaderBridge::Peer* new_peer = 541 ResourceLoaderBridge::Peer* new_peer =
502 delegate_->OnRequestComplete( 542 delegate_->OnRequestComplete(
503 request_info->peer, request_info->resource_type, error_code); 543 request_info->peer, request_info->resource_type, error_code);
504 if (new_peer) 544 if (new_peer)
505 request_info->peer = new_peer; 545 request_info->peer = new_peer;
506 } 546 }
507 547
508 base::TimeTicks renderer_completion_time = ToRendererCompletionTime( 548 base::TimeTicks renderer_completion_time = ToRendererCompletionTime(
509 *request_info, browser_completion_time); 549 *request_info, browser_completion_time);
510 // The request ID will be removed from our pending list in the destructor. 550 // The request ID will be removed from our pending list in the destructor.
511 // Normally, dispatching this message causes the reference-counted request to 551 // Normally, dispatching this message causes the reference-counted request to
512 // die immediately. 552 // die immediately.
513 peer->OnCompletedRequest(error_code, was_ignored_by_handler, security_info, 553 peer->OnCompletedRequest(error_code, was_ignored_by_handler, security_info,
514 renderer_completion_time); 554 renderer_completion_time);
515 } 555 }
516 556
517 int ResourceDispatcher::AddPendingRequest( 557 int ResourceDispatcher::AddPendingRequest(
518 ResourceLoaderBridge::Peer* callback, 558 ResourceLoaderBridge::Peer* callback,
519 ResourceType::Type resource_type, 559 ResourceType::Type resource_type,
560 const GURL& frame_origin,
520 const GURL& request_url) { 561 const GURL& request_url) {
521 // Compute a unique request_id for this renderer process. 562 // Compute a unique request_id for this renderer process.
522 int id = MakeRequestID(); 563 int id = MakeRequestID();
523 pending_requests_[id] = 564 pending_requests_[id] =
524 PendingRequestInfo(callback, resource_type, request_url); 565 PendingRequestInfo(callback, resource_type, frame_origin, request_url);
525 return id; 566 return id;
526 } 567 }
527 568
528 bool ResourceDispatcher::RemovePendingRequest(int request_id) { 569 bool ResourceDispatcher::RemovePendingRequest(int request_id) {
529 PendingRequestList::iterator it = pending_requests_.find(request_id); 570 PendingRequestList::iterator it = pending_requests_.find(request_id);
530 if (it == pending_requests_.end()) 571 if (it == pending_requests_.end())
531 return false; 572 return false;
532 573
574 SiteIsolationPolicy::OnRequestComplete(request_id);
533 PendingRequestInfo& request_info = it->second; 575 PendingRequestInfo& request_info = it->second;
534 ReleaseResourcesInMessageQueue(&request_info.deferred_message_queue); 576 ReleaseResourcesInMessageQueue(&request_info.deferred_message_queue);
535 pending_requests_.erase(it); 577 pending_requests_.erase(it);
536 578
537 return true; 579 return true;
538 } 580 }
539 581
540 void ResourceDispatcher::CancelPendingRequest(int routing_id, 582 void ResourceDispatcher::CancelPendingRequest(int routing_id,
541 int request_id) { 583 int request_id) {
542 PendingRequestList::iterator it = pending_requests_.find(request_id); 584 PendingRequestList::iterator it = pending_requests_.find(request_id);
543 if (it == pending_requests_.end()) { 585 if (it == pending_requests_.end()) {
544 DVLOG(1) << "unknown request"; 586 DVLOG(1) << "unknown request";
545 return; 587 return;
546 } 588 }
547 589
590 SiteIsolationPolicy::OnRequestComplete(request_id);
548 PendingRequestInfo& request_info = it->second; 591 PendingRequestInfo& request_info = it->second;
549 ReleaseResourcesInMessageQueue(&request_info.deferred_message_queue); 592 ReleaseResourcesInMessageQueue(&request_info.deferred_message_queue);
550 pending_requests_.erase(it); 593 pending_requests_.erase(it);
551 594
552 message_sender()->Send( 595 message_sender()->Send(
553 new ResourceHostMsg_CancelRequest(routing_id, request_id)); 596 new ResourceHostMsg_CancelRequest(routing_id, request_id));
554 } 597 }
555 598
556 void ResourceDispatcher::SetDefersLoading(int request_id, bool value) { 599 void ResourceDispatcher::SetDefersLoading(int request_id, bool value) {
557 PendingRequestList::iterator it = pending_requests_.find(request_id); 600 PendingRequestList::iterator it = pending_requests_.find(request_id);
(...skipping 27 matching lines...) Expand all
585 ResourceDispatcher::PendingRequestInfo::PendingRequestInfo() 628 ResourceDispatcher::PendingRequestInfo::PendingRequestInfo()
586 : peer(NULL), 629 : peer(NULL),
587 resource_type(ResourceType::SUB_RESOURCE), 630 resource_type(ResourceType::SUB_RESOURCE),
588 is_deferred(false), 631 is_deferred(false),
589 buffer_size(0) { 632 buffer_size(0) {
590 } 633 }
591 634
592 ResourceDispatcher::PendingRequestInfo::PendingRequestInfo( 635 ResourceDispatcher::PendingRequestInfo::PendingRequestInfo(
593 webkit_glue::ResourceLoaderBridge::Peer* peer, 636 webkit_glue::ResourceLoaderBridge::Peer* peer,
594 ResourceType::Type resource_type, 637 ResourceType::Type resource_type,
638 const GURL& frame_origin,
595 const GURL& request_url) 639 const GURL& request_url)
596 : peer(peer), 640 : peer(peer),
597 resource_type(resource_type), 641 resource_type(resource_type),
598 is_deferred(false), 642 is_deferred(false),
599 url(request_url), 643 url(request_url),
644 frame_origin(frame_origin),
645 response_url(request_url),
600 request_start(base::TimeTicks::Now()) { 646 request_start(base::TimeTicks::Now()) {
601 } 647 }
602 648
603 ResourceDispatcher::PendingRequestInfo::~PendingRequestInfo() {} 649 ResourceDispatcher::PendingRequestInfo::~PendingRequestInfo() {}
604 650
605 void ResourceDispatcher::DispatchMessage(const IPC::Message& message) { 651 void ResourceDispatcher::DispatchMessage(const IPC::Message& message) {
606 IPC_BEGIN_MESSAGE_MAP(ResourceDispatcher, message) 652 IPC_BEGIN_MESSAGE_MAP(ResourceDispatcher, message)
607 IPC_MESSAGE_HANDLER(ResourceMsg_UploadProgress, OnUploadProgress) 653 IPC_MESSAGE_HANDLER(ResourceMsg_UploadProgress, OnUploadProgress)
608 IPC_MESSAGE_HANDLER(ResourceMsg_ReceivedResponse, OnReceivedResponse) 654 IPC_MESSAGE_HANDLER(ResourceMsg_ReceivedResponse, OnReceivedResponse)
609 IPC_MESSAGE_HANDLER(ResourceMsg_ReceivedCachedMetadata, 655 IPC_MESSAGE_HANDLER(ResourceMsg_ReceivedCachedMetadata,
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 void ResourceDispatcher::ReleaseResourcesInMessageQueue(MessageQueue* queue) { 804 void ResourceDispatcher::ReleaseResourcesInMessageQueue(MessageQueue* queue) {
759 while (!queue->empty()) { 805 while (!queue->empty()) {
760 IPC::Message* message = queue->front(); 806 IPC::Message* message = queue->front();
761 ReleaseResourcesInDataMessage(*message); 807 ReleaseResourcesInDataMessage(*message);
762 queue->pop_front(); 808 queue->pop_front();
763 delete message; 809 delete message;
764 } 810 }
765 } 811 }
766 812
767 } // namespace content 813 } // namespace content
OLDNEW
« no previous file with comments | « content/child/resource_dispatcher.h ('k') | content/child/resource_dispatcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698