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

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: rebase Created 4 years 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. Defined in 16 // Maximum number of recorded Logs to keep track of at any moment. Defined in
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 std::deque<std::string> activities_; 65 std::deque<std::string> activities_;
66 66
67 // Whether we are currently recording logs or not. 67 // Whether we are currently recording logs or not.
68 bool is_logging_; 68 bool is_logging_;
69 69
70 // Not owned. 70 // Not owned.
71 Client* client_; 71 Client* client_;
72 }; 72 };
73 } // namespace offline_pages 73 } // namespace offline_pages
74 74
75 #endif // COMPONENTS_OFFLINE_PAGES_OFFLINE_EVENT_LOGGER_H_ 75 #endif // COMPONENTS_OFFLINE_PAGES_CORE_OFFLINE_EVENT_LOGGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698