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

Side by Side Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_event_store.h

Issue 2511973004: components: Cleanup class/struct fwd declarations (Closed)
Patch Set: Rebase on top of current master branch 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVENT_S TORE_H_ 5 #ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVENT_S TORE_H_
6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVENT_S TORE_H_ 6 #define COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVENT_S TORE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <deque> 10 #include <deque>
11 #include <memory> 11 #include <memory>
12 #include <string> 12 #include <string>
13 13
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/threading/thread_checker.h" 15 #include "base/threading/thread_checker.h"
16 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_event _storage_delegate.h" 16 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_event _storage_delegate.h"
17 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_heade rs.h" 17 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_heade rs.h"
18 18
19 namespace base { 19 namespace base {
20 class DictionaryValue; 20 class DictionaryValue;
21 class TimeDelta;
22 class Value; 21 class Value;
23 } 22 }
24 23
25 namespace data_reduction_proxy { 24 namespace data_reduction_proxy {
26 25
27 class DataReductionProxyEventStore 26 class DataReductionProxyEventStore
28 : public DataReductionProxyEventStorageDelegate { 27 : public DataReductionProxyEventStorageDelegate {
29 public: 28 public:
30 // Adds data reduction proxy specific constants to the net_internals 29 // Adds data reduction proxy specific constants to the net_internals
31 // constants dictionary. 30 // constants dictionary.
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 87
89 // Enforce usage on the UI thread. 88 // Enforce usage on the UI thread.
90 base::ThreadChecker thread_checker_; 89 base::ThreadChecker thread_checker_;
91 90
92 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyEventStore); 91 DISALLOW_COPY_AND_ASSIGN(DataReductionProxyEventStore);
93 }; 92 };
94 93
95 } // namespace data_reduction_proxy 94 } // namespace data_reduction_proxy
96 95
97 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVEN T_STORE_H_ 96 #endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVEN T_STORE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698