| Index: chrome/browser/google_apis/request_registry.cc
|
| diff --git a/chrome/browser/google_apis/request_registry.cc b/chrome/browser/google_apis/request_registry.cc
|
| index bc8bc0c156d48d3e0b3d258d1905115ec1cad345..9c247c5cabbc58083a5cd2dca281ea29f476a711 100644
|
| --- a/chrome/browser/google_apis/request_registry.cc
|
| +++ b/chrome/browser/google_apis/request_registry.cc
|
| @@ -10,21 +10,13 @@ using content::BrowserThread;
|
|
|
| namespace google_apis {
|
|
|
| -RequestProgressStatus::RequestProgressStatus(const base::FilePath& path)
|
| +RequestProgressStatus::RequestProgressStatus()
|
| : request_id(-1),
|
| - file_path(path),
|
| transfer_state(REQUEST_NOT_STARTED) {
|
| }
|
|
|
| RequestRegistry::Request::Request(RequestRegistry* registry)
|
| - : registry_(registry),
|
| - progress_status_(base::FilePath()) {
|
| -}
|
| -
|
| -RequestRegistry::Request::Request(RequestRegistry* registry,
|
| - const base::FilePath& path)
|
| - : registry_(registry),
|
| - progress_status_(path) {
|
| + : registry_(registry) {
|
| }
|
|
|
| RequestRegistry::Request::~Request() {
|
|
|