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/favicon/large_icon_service_factory.h" | 5 #include "chrome/browser/favicon/large_icon_service_factory.h" |
6 | 6 |
7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
8 #include "base/threading/sequenced_worker_pool.h" | |
9 #include "chrome/browser/favicon/favicon_service_factory.h" | 8 #include "chrome/browser/favicon/favicon_service_factory.h" |
10 #include "chrome/browser/profiles/incognito_helpers.h" | 9 #include "chrome/browser/profiles/incognito_helpers.h" |
11 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
12 #include "components/favicon/core/favicon_service.h" | 11 #include "components/favicon/core/favicon_service.h" |
13 #include "components/favicon/core/large_icon_service.h" | 12 #include "components/favicon/core/large_icon_service.h" |
14 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 13 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
15 #include "content/public/browser/browser_context.h" | 14 #include "content/public/browser/browser_context.h" |
16 #include "content/public/browser/browser_thread.h" | 15 #include "content/public/browser/browser_thread.h" |
17 | 16 |
18 // static | 17 // static |
(...skipping 29 matching lines...) Expand all Loading... |
48 ServiceAccessType::EXPLICIT_ACCESS); | 47 ServiceAccessType::EXPLICIT_ACCESS); |
49 return new favicon::LargeIconService( | 48 return new favicon::LargeIconService( |
50 favicon_service, content::BrowserThread::GetBlockingPool() | 49 favicon_service, content::BrowserThread::GetBlockingPool() |
51 ->GetTaskRunnerWithShutdownBehavior( | 50 ->GetTaskRunnerWithShutdownBehavior( |
52 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)); | 51 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)); |
53 } | 52 } |
54 | 53 |
55 bool LargeIconServiceFactory::ServiceIsNULLWhileTesting() const { | 54 bool LargeIconServiceFactory::ServiceIsNULLWhileTesting() const { |
56 return true; | 55 return true; |
57 } | 56 } |
OLD | NEW |