| OLD | NEW |
| 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_ARCHIVE_MANAGER_H_ | 5 #ifndef COMPONENTS_OFFLINE_PAGES_CORE_ARCHIVE_MANAGER_H_ |
| 6 #define COMPONENTS_OFFLINE_PAGES_ARCHIVE_MANAGER_H_ | 6 #define COMPONENTS_OFFLINE_PAGES_CORE_ARCHIVE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class SequencedTaskRunner; | 16 class SequencedTaskRunner; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 68 |
| 69 private: | 69 private: |
| 70 // Path under which all of the managed archives should be stored. | 70 // Path under which all of the managed archives should be stored. |
| 71 base::FilePath archives_dir_; | 71 base::FilePath archives_dir_; |
| 72 // Task runner for running file operations. | 72 // Task runner for running file operations. |
| 73 scoped_refptr<base::SequencedTaskRunner> task_runner_; | 73 scoped_refptr<base::SequencedTaskRunner> task_runner_; |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace offline_pages | 76 } // namespace offline_pages |
| 77 | 77 |
| 78 #endif // COMPONENTS_OFFLINE_PAGES_ARCHIVE_MANAGER_H_ | 78 #endif // COMPONENTS_OFFLINE_PAGES_CORE_ARCHIVE_MANAGER_H_ |
| OLD | NEW |