| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_NOTIFIER_H_ |
| 6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_NOTIFIER_H_ |
| 7 |
| 8 namespace offline_pages { |
| 9 |
| 10 class SavePageRequest; |
| 11 |
| 12 class RequestNotifier { |
| 13 public: |
| 14 // Status to return for failed notifications. |
| 15 // TODO(petewil): Can we find a better name for this enum? |
| 16 enum class SavePageStatus { |
| 17 SUCCESS, |
| 18 PRERENDER_FAILURE, |
| 19 FOREGROUND_CANCELED, |
| 20 SAVE_FAILED, |
| 21 EXPIRED, |
| 22 RETRY_COUNT_EXCEEDED, |
| 23 REMOVED, |
| 24 }; |
| 25 |
| 26 // Notifies observers that |request| has been added. |
| 27 virtual void NotifyAdded(const SavePageRequest& request) = 0; |
| 28 |
| 29 // Notifies observers that |request| has been completed with |status|. |
| 30 virtual void NotifyCompleted(const SavePageRequest& request, |
| 31 SavePageStatus status) = 0; |
| 32 |
| 33 // Notifies observers that |request| has been changed. |
| 34 virtual void NotifyChanged(const SavePageRequest& request) = 0; |
| 35 }; |
| 36 |
| 37 } // namespace offline_pages |
| 38 |
| 39 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_NOTIFIER_H_ |
| OLD | NEW |