| Index: chrome/browser/android/offline_pages/prerendering_offliner_unittest.cc
|
| diff --git a/chrome/browser/android/offline_pages/prerendering_offliner_unittest.cc b/chrome/browser/android/offline_pages/prerendering_offliner_unittest.cc
|
| index f13a1237266ac01a1399b895ed6bc257ea128399..4cae40d69e7e289572b2785fb6fe1913d7f83e5c 100644
|
| --- a/chrome/browser/android/offline_pages/prerendering_offliner_unittest.cc
|
| +++ b/chrome/browser/android/offline_pages/prerendering_offliner_unittest.cc
|
| @@ -58,18 +58,16 @@ class PrerenderingOfflinerTest : public testing::Test {
|
| }
|
|
|
| bool loading() const { return loader_->mock_loading(); }
|
| - Offliner::CompletionStatus completion_status() {
|
| - return completion_status_;
|
| - }
|
| + Offliner::RequestStatus completion_status() { return completion_status_; }
|
|
|
| private:
|
| void OnCompletion(const SavePageRequest& request,
|
| - Offliner::CompletionStatus status);
|
| + Offliner::RequestStatus status);
|
|
|
| std::unique_ptr<PrerenderingOffliner> offliner_;
|
| // Not owned.
|
| MockPrerenderingLoader* loader_;
|
| - Offliner::CompletionStatus completion_status_;
|
| + Offliner::RequestStatus completion_status_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(PrerenderingOfflinerTest);
|
| };
|
| @@ -87,7 +85,7 @@ void PrerenderingOfflinerTest::SetUp() {
|
| }
|
|
|
| void PrerenderingOfflinerTest::OnCompletion(const SavePageRequest& request,
|
| - Offliner::CompletionStatus status) {
|
| + Offliner::RequestStatus status) {
|
| completion_status_ = status;
|
| }
|
|
|
|
|