| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_PAGE_MODEL_H_ | 5 #ifndef COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_H_ |
| 6 #define COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_H_ | 6 #define COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "components/offline_pages/offline_page_metadata_store.h" | 27 #include "components/offline_pages/offline_page_metadata_store.h" |
| 28 #include "components/offline_pages/offline_page_storage_manager.h" | 28 #include "components/offline_pages/offline_page_storage_manager.h" |
| 29 #include "components/offline_pages/offline_page_types.h" | 29 #include "components/offline_pages/offline_page_types.h" |
| 30 | 30 |
| 31 class GURL; | 31 class GURL; |
| 32 namespace base { | 32 namespace base { |
| 33 class SequencedTaskRunner; | 33 class SequencedTaskRunner; |
| 34 class Time; | 34 class Time; |
| 35 class TimeDelta; | 35 class TimeDelta; |
| 36 class TimeTicks; | 36 class TimeTicks; |
| 37 } | 37 } // namespace base |
| 38 | 38 |
| 39 namespace offline_pages { | 39 namespace offline_pages { |
| 40 | 40 |
| 41 static const char* const kBookmarkNamespace = "bookmark"; | 41 static const char* const kBookmarkNamespace = "bookmark"; |
| 42 static const int64_t kInvalidOfflineId = 0; | 42 static const int64_t kInvalidOfflineId = 0; |
| 43 | 43 |
| 44 struct ClientId; | 44 struct ClientId; |
| 45 | 45 |
| 46 class ClientPolicyController; | 46 class ClientPolicyController; |
| 47 struct OfflinePageItem; | 47 struct OfflinePageItem; |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 std::unique_ptr<OfflinePageStorageManager> storage_manager_; | 368 std::unique_ptr<OfflinePageStorageManager> storage_manager_; |
| 369 | 369 |
| 370 base::WeakPtrFactory<OfflinePageModel> weak_ptr_factory_; | 370 base::WeakPtrFactory<OfflinePageModel> weak_ptr_factory_; |
| 371 | 371 |
| 372 DISALLOW_COPY_AND_ASSIGN(OfflinePageModel); | 372 DISALLOW_COPY_AND_ASSIGN(OfflinePageModel); |
| 373 }; | 373 }; |
| 374 | 374 |
| 375 } // namespace offline_pages | 375 } // namespace offline_pages |
| 376 | 376 |
| 377 #endif // COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_H_ | 377 #endif // COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_H_ |
| OLD | NEW |