Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: components/offline_pages/background/request_notifier.h

Issue 2260963003: [Offline pages] Enabling notifications for pages saved later (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding tests Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_REQUEST_NOTIFIER_H_ 5 #ifndef COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_NOTIFIER_H_
6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_NOTIFIER_H_ 6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_NOTIFIER_H_
7 7
8 namespace offline_pages { 8 namespace offline_pages {
9 9
10 class SavePageRequest; 10 class SavePageRequest;
11 11
12 class RequestNotifier { 12 class RequestNotifier {
13 public: 13 public:
14 // Status to return for failed notifications. 14 // Status to return for failed notifications.
15 // TODO(petewil): Can we find a better name for this enum? 15 // TODO(petewil): Can we find a better name for this enum?
16 enum class SavePageStatus { 16 enum class SavePageStatus {
17 SUCCESS, 17 SUCCESS,
18 PRERENDER_FAILURE, 18 PRERENDER_FAILURE,
19 FOREGROUND_CANCELED, 19 FOREGROUND_CANCELED,
20 SAVE_FAILED, 20 SAVE_FAILED,
21 EXPIRED, 21 EXPIRED,
22 RETRY_COUNT_EXCEEDED, 22 RETRY_COUNT_EXCEEDED,
23 REMOVED, 23 REMOVED,
24 }; 24 };
25 25
26 virtual ~RequestNotifier() = default;
Pete Williamson 2016/08/24 17:02:41 This is fine, but why add it? Should we be doing
fgorski 2016/08/24 18:25:23 http://stackoverflow.com/questions/461203/when-to-
27
26 // Notifies observers that |request| has been added. 28 // Notifies observers that |request| has been added.
27 virtual void NotifyAdded(const SavePageRequest& request) = 0; 29 virtual void NotifyAdded(const SavePageRequest& request) = 0;
28 30
29 // Notifies observers that |request| has been completed with |status|. 31 // Notifies observers that |request| has been completed with |status|.
30 virtual void NotifyCompleted(const SavePageRequest& request, 32 virtual void NotifyCompleted(const SavePageRequest& request,
31 SavePageStatus status) = 0; 33 SavePageStatus status) = 0;
32 34
33 // Notifies observers that |request| has been changed. 35 // Notifies observers that |request| has been changed.
34 virtual void NotifyChanged(const SavePageRequest& request) = 0; 36 virtual void NotifyChanged(const SavePageRequest& request) = 0;
35 }; 37 };
36 38
37 } // namespace offline_pages 39 } // namespace offline_pages
38 40
39 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_NOTIFIER_H_ 41 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_NOTIFIER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698