| Index: content/public/browser/resource_throttle.cc
|
| diff --git a/content/public/browser/resource_throttle.cc b/content/public/browser/resource_throttle.cc
|
| index 88a89a8025de908b015ffceb2dd0b271757b8980..53b1e21951a667adc3298dd6cf40b62f32ddc242 100644
|
| --- a/content/public/browser/resource_throttle.cc
|
| +++ b/content/public/browser/resource_throttle.cc
|
| @@ -10,4 +10,20 @@ bool ResourceThrottle::MustProcessResponseBeforeReadingBody() {
|
| return false;
|
| }
|
|
|
| +void ResourceThrottle::Cancel() {
|
| + delegate_->Cancel();
|
| +}
|
| +
|
| +void ResourceThrottle::CancelAndIgnore() {
|
| + delegate_->CancelAndIgnore();
|
| +}
|
| +
|
| +void ResourceThrottle::CancelWithError(int error_code) {
|
| + delegate_->CancelWithError(error_code);
|
| +}
|
| +
|
| +void ResourceThrottle::Resume() {
|
| + delegate_->Resume();
|
| +}
|
| +
|
| } // namespace content
|
|
|