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

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

Issue 2089413002: [Offline Pages] Create a event/activity logger (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
(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_COORDINATOR_EVENT_LOGGER_H_
6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_COORDINATOR_EVENT_LOGGER_H_
7
8 #include "components/offline_pages/offline_event_logger.h"
9
10 namespace offline_pages {
11
12 class RequestCoordinatorEventLogger : public OfflineEventLogger {
13 public:
14 // Records that a background task has been updated.
15 void RecordSavePageRequestUpdated(const std::string& name_space,
16 const std::string& new_status,
17 const std::string& id);
fgorski 2016/06/23 16:34:06 Which ID is this referring to? Please document and
chili 2016/06/24 02:45:50 Done.
18 };
19
20 } // namespace offline_pages
21
22 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_REQUEST_COORDINATOR_EVENT_LOGGER_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698