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 // Policy for the Background Offlining system. Some policy will belong to the |
| 11 // RequestCoordinator, some to the RequestQueue, and some to the Offliner. |
| 12 class OfflinerPolicy { |
| 13 public: |
| 14 OfflinerPolicy(){}; |
| 15 |
| 16 // TODO(petewil): Implement and add a .cc file. |
| 17 // Eventually this should get data from a finch experiment. |
| 18 }; |
| 19 } |
| 20 |
| 21 #endif // COMPONENTS_OFFLINE_PAGES_BACKGROUND_OFFLINER_POLICY_H_ |
OLD | NEW |