Chromium Code Reviews| 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_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_ | |
| OLD | NEW |