| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "chrome/browser/supervised_user/experimental/supervised_user_blacklist_
downloader.h" | 5 #include "chrome/browser/supervised_user/experimental/supervised_user_blacklist_
downloader.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/files/file_util.h" | 8 #include "base/files/file_util.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "content/public/browser/browser_thread.h" | 10 #include "content/public/browser/browser_thread.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 SupervisedUserBlacklistDownloader::SupervisedUserBlacklistDownloader( | 21 SupervisedUserBlacklistDownloader::SupervisedUserBlacklistDownloader( |
| 22 const GURL& url, | 22 const GURL& url, |
| 23 const base::FilePath& path, | 23 const base::FilePath& path, |
| 24 net::URLRequestContextGetter* request_context, | 24 net::URLRequestContextGetter* request_context, |
| 25 const DownloadFinishedCallback& callback) | 25 const DownloadFinishedCallback& callback) |
| 26 : callback_(callback), | 26 : callback_(callback), |
| 27 fetcher_(URLFetcher::Create(url, URLFetcher::GET, this)), | 27 fetcher_(URLFetcher::Create(url, URLFetcher::GET, this)), |
| 28 weak_ptr_factory_(this) { | 28 weak_ptr_factory_(this) { |
| 29 fetcher_->SetRequestContext(request_context); | 29 fetcher_->SetRequestContext(request_context); |
| 30 fetcher_->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES | | 30 fetcher_->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES | |
| 31 net::LOAD_DO_NOT_SAVE_COOKIES | | 31 net::LOAD_DO_NOT_SAVE_COOKIES); |
| 32 net::LOAD_IS_DOWNLOAD); | |
| 33 fetcher_->SetAutomaticallyRetryOnNetworkChanges(kNumRetries); | 32 fetcher_->SetAutomaticallyRetryOnNetworkChanges(kNumRetries); |
| 34 fetcher_->SaveResponseToFileAtPath( | 33 fetcher_->SaveResponseToFileAtPath( |
| 35 path, | 34 path, |
| 36 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE)); | 35 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE)); |
| 37 | 36 |
| 38 base::PostTaskAndReplyWithResult( | 37 base::PostTaskAndReplyWithResult( |
| 39 BrowserThread::GetBlockingPool(), | 38 BrowserThread::GetBlockingPool(), |
| 40 FROM_HERE, | 39 FROM_HERE, |
| 41 base::Bind(&base::PathExists, path), | 40 base::Bind(&base::PathExists, path), |
| 42 base::Bind(&SupervisedUserBlacklistDownloader::OnFileExistsCheckDone, | 41 base::Bind(&SupervisedUserBlacklistDownloader::OnFileExistsCheckDone, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 70 } | 69 } |
| 71 | 70 |
| 72 void SupervisedUserBlacklistDownloader::OnFileExistsCheckDone(bool exists) { | 71 void SupervisedUserBlacklistDownloader::OnFileExistsCheckDone(bool exists) { |
| 73 if (exists) { | 72 if (exists) { |
| 74 // TODO(treib): Figure out a strategy for updating the file. | 73 // TODO(treib): Figure out a strategy for updating the file. |
| 75 callback_.Run(true); | 74 callback_.Run(true); |
| 76 } else { | 75 } else { |
| 77 fetcher_->Start(); | 76 fetcher_->Start(); |
| 78 } | 77 } |
| 79 } | 78 } |
| OLD | NEW |