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

Side by Side Diff: components/offline_pages/core/offline_event_logger.h

Issue 2489443002: Move all components/offline_pages/ files into component/offline_pages/core (Closed)
Patch Set: update Created 4 years, 1 month 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_OFFLINE_EVENT_LOGGER_H_ 5 #ifndef COMPONENTS_OFFLINE_PAGES_CORE_OFFLINE_EVENT_LOGGER_H_
6 #define COMPONENTS_OFFLINE_PAGES_OFFLINE_EVENT_LOGGER_H_ 6 #define COMPONENTS_OFFLINE_PAGES_CORE_OFFLINE_EVENT_LOGGER_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 13
14 namespace offline_pages { 14 namespace offline_pages {
15 15
16 // Maximum number of recorded Logs to keep track of at any moment. 16 // Maximum number of recorded Logs to keep track of at any moment.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 private: 50 private:
51 // Recorded offline page activities. 51 // Recorded offline page activities.
52 std::deque<std::string> activities_; 52 std::deque<std::string> activities_;
53 53
54 // Whether we are currently recording logs or not. 54 // Whether we are currently recording logs or not.
55 bool is_logging_; 55 bool is_logging_;
56 }; 56 };
57 } // namespace offline_pages 57 } // namespace offline_pages
58 58
59 #endif // COMPONENTS_OFFLINE_PAGES_OFFLINE_EVENT_LOGGER_H_ 59 #endif // COMPONENTS_OFFLINE_PAGES_CORE_OFFLINE_EVENT_LOGGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698