| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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://wiki.corp.google.com/twiki/bin/view/Main/ChromeMultiProcessResourc
eLoading | 5 // See http://wiki.corp.google.com/twiki/bin/view/Main/ChromeMultiProcessResourc
eLoading |
| 6 | 6 |
| 7 #include "chrome/common/resource_dispatcher.h" | 7 #include "chrome/common/resource_dispatcher.h" |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/shared_memory.h" | 10 #include "base/shared_memory.h" |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 case ViewMsg_Resource_ReceivedRedirect::ID: | 509 case ViewMsg_Resource_ReceivedRedirect::ID: |
| 510 case ViewMsg_Resource_DataReceived::ID: | 510 case ViewMsg_Resource_DataReceived::ID: |
| 511 case ViewMsg_Resource_RequestComplete::ID: | 511 case ViewMsg_Resource_RequestComplete::ID: |
| 512 return true; | 512 return true; |
| 513 | 513 |
| 514 default: | 514 default: |
| 515 break; | 515 break; |
| 516 } | 516 } |
| 517 | 517 |
| 518 return false; | 518 return false; |
| 519 } | 519 } |
| 520 |
| OLD | NEW |