| Index: webkit/tools/test_shell/simple_resource_loader_bridge.cc
|
| diff --git a/webkit/tools/test_shell/simple_resource_loader_bridge.cc b/webkit/tools/test_shell/simple_resource_loader_bridge.cc
|
| index 14171a4f0f7b12da373959c82e5a204b8c9f2d95..cccaf7378a2048b924cd10e82127f9280d6b91e6 100644
|
| --- a/webkit/tools/test_shell/simple_resource_loader_bridge.cc
|
| +++ b/webkit/tools/test_shell/simple_resource_loader_bridge.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
| //
|
| @@ -291,7 +291,7 @@ class RequestProxy : public net::URLRequest::Delegate,
|
| peer_->OnDownloadedData(bytes_read);
|
| }
|
|
|
| - void NotifyCompletedRequest(const URLRequestStatus& status,
|
| + void NotifyCompletedRequest(const net::URLRequestStatus& status,
|
| const std::string& security_info,
|
| const base::Time& complete_time) {
|
| if (peer_) {
|
| @@ -423,7 +423,7 @@ class RequestProxy : public net::URLRequest::Delegate,
|
| this, &RequestProxy::NotifyReceivedData, bytes_read));
|
| }
|
|
|
| - virtual void OnCompletedRequest(const URLRequestStatus& status,
|
| + virtual void OnCompletedRequest(const net::URLRequestStatus& status,
|
| const std::string& security_info,
|
| const base::Time& complete_time) {
|
| if (download_to_file_)
|
| @@ -611,7 +611,7 @@ class SyncRequestProxy : public RequestProxy {
|
| AsyncReadData(); // read more (may recurse)
|
| }
|
|
|
| - virtual void OnCompletedRequest(const URLRequestStatus& status,
|
| + virtual void OnCompletedRequest(const net::URLRequestStatus& status,
|
| const std::string& security_info,
|
| const base::Time& complete_time) {
|
| if (download_to_file_)
|
|
|