Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef COMPONENTS_OFFLINE_PAGES_BACKGROUND_OFFLINER_H_ | 5 #ifndef COMPONENTS_OFFLINE_PAGES_BACKGROUND_OFFLINER_H_ |
| 6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_OFFLINER_H_ | 6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_OFFLINER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 37 // Failed to save loaded page. | 37 // Failed to save loaded page. |
| 38 SAVE_FAILED = 6, | 38 SAVE_FAILED = 6, |
| 39 // Foreground transition canceled request. | 39 // Foreground transition canceled request. |
| 40 FOREGROUND_CANCELED = 7, | 40 FOREGROUND_CANCELED = 7, |
| 41 // RequestCoordinator canceled request attempt per time limit. | 41 // RequestCoordinator canceled request attempt per time limit. |
| 42 REQUEST_COORDINATOR_TIMED_OUT = 8, | 42 REQUEST_COORDINATOR_TIMED_OUT = 8, |
| 43 // The loader did not accept/start the request. | 43 // The loader did not accept/start the request. |
| 44 PRERENDERING_NOT_STARTED = 9, | 44 PRERENDERING_NOT_STARTED = 9, |
| 45 // Prerendering failed with hard error so should not retry the request. | 45 // Prerendering failed with hard error so should not retry the request. |
| 46 PRERENDERING_FAILED_NO_RETRY = 10, | 46 PRERENDERING_FAILED_NO_RETRY = 10, |
| 47 // Prerendering failed with some error that suggests we should not continue | |
| 48 // processing another request at this time. | |
| 49 PRERENDERING_FAILED_NO_NEXT = 11, | |
|
chili
2016/12/02 23:17:43
Just a thought as I'm working on the background lo
dougarnett
2016/12/02 23:50:08
Or LOADING_FAILED_NO_NEXT?
Pete, WDYT - should we
| |
| 47 // NOTE: insert new values above this line and update histogram enum too. | 50 // NOTE: insert new values above this line and update histogram enum too. |
| 48 STATUS_COUNT | 51 STATUS_COUNT |
| 49 }; | 52 }; |
| 50 | 53 |
| 51 // Reports the completion status of a request. | 54 // Reports the completion status of a request. |
| 52 // TODO(dougarnett): consider passing back a request id instead of request. | 55 // TODO(dougarnett): consider passing back a request id instead of request. |
| 53 typedef base::Callback<void(const SavePageRequest&, RequestStatus)> | 56 typedef base::Callback<void(const SavePageRequest&, RequestStatus)> |
| 54 CompletionCallback; | 57 CompletionCallback; |
| 55 | 58 |
| 56 Offliner() {} | 59 Offliner() {} |
| 57 virtual ~Offliner() {} | 60 virtual ~Offliner() {} |
| 58 | 61 |
| 59 // Processes |request| to load and save an offline page. | 62 // Processes |request| to load and save an offline page. |
| 60 // Returns whether the request was accepted or not. |callback| is guaranteed | 63 // Returns whether the request was accepted or not. |callback| is guaranteed |
| 61 // to be called if the request was accepted and |Cancel()| is not called. | 64 // to be called if the request was accepted and |Cancel()| is not called. |
| 62 virtual bool LoadAndSave( | 65 virtual bool LoadAndSave( |
| 63 const SavePageRequest& request, | 66 const SavePageRequest& request, |
| 64 const CompletionCallback& callback) = 0; | 67 const CompletionCallback& callback) = 0; |
| 65 | 68 |
| 66 // Clears the currently processing request, if any, and skips running its | 69 // Clears the currently processing request, if any, and skips running its |
| 67 // CompletionCallback. | 70 // CompletionCallback. |
| 68 virtual void Cancel() = 0; | 71 virtual void Cancel() = 0; |
| 69 | 72 |
| 70 // TODO(dougarnett): add policy support methods. | 73 // TODO(dougarnett): add policy support methods. |
| 71 }; | 74 }; |
| 72 | 75 |
| 73 } // namespace offline_pages | 76 } // namespace offline_pages |
| 74 | 77 |
| 75 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_OFFLINER_H_ | 78 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_OFFLINER_H_ |
| OLD | NEW |