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_OFFLINER_POLICY_H_ | |
6 #define COMPONENTS_OFFLINE_PAGES_BACKGROUND_OFFLINER_POLICY_H_ | |
7 | |
8 namespace offline_pages { | |
9 | |
10 class OfflinerPolicy { | |
dougarnett
2016/05/03 22:30:44
some initial class comment?
Pete Williamson
2016/05/04 00:39:21
Done.
| |
11 public: | |
12 OfflinerPolicy() {}; | |
13 | |
14 // TODO(petewil): Implement and add a .cc file. | |
15 // Eventually this should get data from a finch experiment. | |
16 | |
17 }; | |
18 | |
19 } | |
20 | |
21 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_OFFLINER_POLICY_H_ | |
OLD | NEW |