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

Side by Side Diff: components/offline_pages/offline_page_model.h

Issue 1977853004: [Offline pages] Adding ArchiveManager to abstract offline archives management (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding a missing destructor for OfflinePageStorageManager::Client Created 4 years, 7 months 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 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
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
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_
OLDNEW
« no previous file with comments | « components/offline_pages/archive_manager_unittest.cc ('k') | components/offline_pages/offline_page_storage_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698