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

Side by Side Diff: chrome/browser/renderer_host/resource_dispatcher_host.h

Issue 661178: Continue removing bad dependency of chrome/common on chrome/browser... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « chrome/browser/profile.cc ('k') | chrome/browser/renderer_host/resource_dispatcher_host.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 // This is the browser side of the resource dispatcher, it receives requests 5 // This is the browser side of the resource dispatcher, it receives requests
6 // from the child process (i.e. [Renderer, Plugin, Worker]ProcessHost), and 6 // from the child process (i.e. [Renderer, Plugin, Worker]ProcessHost), and
7 // dispatches them to URLRequests. It then fowards the messages from the 7 // dispatches them to URLRequests. It then fowards the messages from the
8 // URLRequests back to the correct process for handling. 8 // URLRequests back to the correct process for handling.
9 // 9 //
10 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc e-loading 10 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc e-loading
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 delete message; 267 delete message;
268 return false; 268 return false;
269 } 269 }
270 270
271 private: 271 private:
272 FRIEND_TEST(ResourceDispatcherHostTest, TestBlockedRequestsProcessDies); 272 FRIEND_TEST(ResourceDispatcherHostTest, TestBlockedRequestsProcessDies);
273 FRIEND_TEST(ResourceDispatcherHostTest, 273 FRIEND_TEST(ResourceDispatcherHostTest,
274 IncrementOutstandingRequestsMemoryCost); 274 IncrementOutstandingRequestsMemoryCost);
275 FRIEND_TEST(ResourceDispatcherHostTest, 275 FRIEND_TEST(ResourceDispatcherHostTest,
276 CalculateApproximateMemoryCost); 276 CalculateApproximateMemoryCost);
277 FRIEND_TEST(ApplyExtensionMessageFilterPolicyTest, WrongScheme);
278 FRIEND_TEST(ApplyExtensionMessageFilterPolicyTest, GoodScheme);
279 FRIEND_TEST(ApplyExtensionMessageFilterPolicyTest,
280 GoodSchemeWithSecurityFilter);
281 FRIEND_TEST(ApplyExtensionMessageFilterPolicyTest,
282 GoodSchemeWrongResourceType);
283 FRIEND_TEST(ApplyExtensionMessageFilterPolicyTest,
284 WrongSchemeResourceAndFilter);
277 285
278 class ShutdownTask; 286 class ShutdownTask;
279 287
280 friend class ShutdownTask; 288 friend class ShutdownTask;
281 289
282 // Associates the given info with the given request. The info will then be 290 // Associates the given info with the given request. The info will then be
283 // owned by the request. 291 // owned by the request.
284 void SetRequestInfo(URLRequest* request, 292 void SetRequestInfo(URLRequest* request,
285 ResourceDispatcherHostRequestInfo* info); 293 ResourceDispatcherHostRequestInfo* info);
286 294
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 void OnDataReceivedACK(int request_id); 403 void OnDataReceivedACK(int request_id);
396 void OnUploadProgressACK(int request_id); 404 void OnUploadProgressACK(int request_id);
397 void OnCancelRequest(int request_id); 405 void OnCancelRequest(int request_id);
398 void OnFollowRedirect(int request_id, 406 void OnFollowRedirect(int request_id,
399 bool has_new_first_party_for_cookies, 407 bool has_new_first_party_for_cookies,
400 const GURL& new_first_party_for_cookies); 408 const GURL& new_first_party_for_cookies);
401 409
402 // Returns true if the message passed in is a resource related message. 410 // Returns true if the message passed in is a resource related message.
403 static bool IsResourceDispatcherHostMessage(const IPC::Message&); 411 static bool IsResourceDispatcherHostMessage(const IPC::Message&);
404 412
413 // Applies FilterPolicy::FILTER_EXTENSION_MESSAGES to all text/css requests
414 // that have "chrome-extension://" scheme.
415 static void ApplyExtensionMessageFilterPolicy(
416 const GURL& url,
417 const ResourceType::Type& resource_type,
418 ResourceDispatcherHostRequestInfo* request_info);
419
405 PendingRequestList pending_requests_; 420 PendingRequestList pending_requests_;
406 421
407 // A timer that periodically calls UpdateLoadStates while pending_requests_ 422 // A timer that periodically calls UpdateLoadStates while pending_requests_
408 // is not empty. 423 // is not empty.
409 base::RepeatingTimer<ResourceDispatcherHost> update_load_states_timer_; 424 base::RepeatingTimer<ResourceDispatcherHost> update_load_states_timer_;
410 425
411 // Handles the resource requests from the moment we want to start them. 426 // Handles the resource requests from the moment we want to start them.
412 ResourceQueue resource_queue_; 427 ResourceQueue resource_queue_;
413 428
414 // We own the download file writing thread and manager 429 // We own the download file writing thread and manager
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 int max_outstanding_requests_cost_per_process_; 485 int max_outstanding_requests_cost_per_process_;
471 486
472 // Used during IPC message dispatching so that the handlers can get a pointer 487 // Used during IPC message dispatching so that the handlers can get a pointer
473 // to the source of the message. 488 // to the source of the message.
474 Receiver* receiver_; 489 Receiver* receiver_;
475 490
476 DISALLOW_COPY_AND_ASSIGN(ResourceDispatcherHost); 491 DISALLOW_COPY_AND_ASSIGN(ResourceDispatcherHost);
477 }; 492 };
478 493
479 #endif // CHROME_BROWSER_RENDERER_HOST_RESOURCE_DISPATCHER_HOST_H_ 494 #endif // CHROME_BROWSER_RENDERER_HOST_RESOURCE_DISPATCHER_HOST_H_
OLDNEW
« no previous file with comments | « chrome/browser/profile.cc ('k') | chrome/browser/renderer_host/resource_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698