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 #include "chrome/browser/android/offline_pages/offline_page_model_factory.h" | 5 #include "chrome/browser/android/offline_pages/offline_page_model_factory.h" |
6 | 6 |
7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/sequenced_task_runner.h" | 10 #include "base/sequenced_task_runner.h" |
11 #include "chrome/browser/profiles/incognito_helpers.h" | 11 #include "chrome/browser/profiles/incognito_helpers.h" |
12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
13 #include "chrome/common/chrome_paths.h" | 13 #include "chrome/common/chrome_paths.h" |
14 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 14 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
15 #include "components/leveldb_proto/proto_database_impl.h" | |
16 #include "components/offline_pages/offline_page_metadata_store_impl.h" | 15 #include "components/offline_pages/offline_page_metadata_store_impl.h" |
17 #include "components/offline_pages/offline_page_model.h" | 16 #include "components/offline_pages/offline_page_model.h" |
18 #include "components/offline_pages/proto/offline_pages.pb.h" | 17 #include "components/offline_pages/proto/offline_pages.pb.h" |
19 #include "content/public/browser/browser_thread.h" | 18 #include "content/public/browser/browser_thread.h" |
20 | 19 |
21 namespace offline_pages { | 20 namespace offline_pages { |
22 | 21 |
23 OfflinePageModelFactory::OfflinePageModelFactory() | 22 OfflinePageModelFactory::OfflinePageModelFactory() |
24 : BrowserContextKeyedServiceFactory( | 23 : BrowserContextKeyedServiceFactory( |
25 "OfflinePageModel", | 24 "OfflinePageModel", |
(...skipping 15 matching lines...) Expand all Loading... |
41 GetInstance()->GetServiceForBrowserContext(context, true)); | 40 GetInstance()->GetServiceForBrowserContext(context, true)); |
42 } | 41 } |
43 | 42 |
44 KeyedService* OfflinePageModelFactory::BuildServiceInstanceFor( | 43 KeyedService* OfflinePageModelFactory::BuildServiceInstanceFor( |
45 content::BrowserContext* context) const { | 44 content::BrowserContext* context) const { |
46 DCHECK(!context->IsOffTheRecord()); | 45 DCHECK(!context->IsOffTheRecord()); |
47 | 46 |
48 scoped_refptr<base::SequencedTaskRunner> background_task_runner = | 47 scoped_refptr<base::SequencedTaskRunner> background_task_runner = |
49 content::BrowserThread::GetBlockingPool()->GetSequencedTaskRunner( | 48 content::BrowserThread::GetBlockingPool()->GetSequencedTaskRunner( |
50 content::BrowserThread::GetBlockingPool()->GetSequenceToken()); | 49 content::BrowserThread::GetBlockingPool()->GetSequenceToken()); |
51 | |
52 scoped_ptr<leveldb_proto::ProtoDatabaseImpl<OfflinePageEntry>> database( | |
53 new leveldb_proto::ProtoDatabaseImpl<OfflinePageEntry>( | |
54 background_task_runner)); | |
55 | |
56 base::FilePath store_path; | 50 base::FilePath store_path; |
57 CHECK(PathService::Get(chrome::DIR_OFFLINE_PAGE_METADATA, &store_path)); | 51 CHECK(PathService::Get(chrome::DIR_OFFLINE_PAGE_METADATA, &store_path)); |
58 scoped_ptr<OfflinePageMetadataStoreImpl> metadata_store( | 52 scoped_ptr<OfflinePageMetadataStoreImpl> metadata_store( |
59 new OfflinePageMetadataStoreImpl(database.Pass(), store_path)); | 53 new OfflinePageMetadataStoreImpl(background_task_runner, store_path)); |
60 | 54 |
61 return new OfflinePageModel(metadata_store.Pass(), background_task_runner); | 55 return new OfflinePageModel(metadata_store.Pass(), background_task_runner); |
62 } | 56 } |
63 | 57 |
64 content::BrowserContext* OfflinePageModelFactory::GetBrowserContextToUse( | 58 content::BrowserContext* OfflinePageModelFactory::GetBrowserContextToUse( |
65 content::BrowserContext* context) const { | 59 content::BrowserContext* context) const { |
66 return chrome::GetBrowserContextRedirectedInIncognito(context); | 60 return chrome::GetBrowserContextRedirectedInIncognito(context); |
67 } | 61 } |
68 | 62 |
69 } // namespace offline_pages | 63 } // namespace offline_pages |
70 | 64 |
OLD | NEW |