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

Side by Side Diff: ios/chrome/browser/favicon/ios_chrome_large_icon_service_factory.cc

Issue 2691263002: Revert of Remove header dependencies from sequence_checker.h to sequenced_worker_pool.h (Closed)
Patch Set: Created 3 years, 10 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 #include "ios/chrome/browser/favicon/ios_chrome_large_icon_service_factory.h" 5 #include "ios/chrome/browser/favicon/ios_chrome_large_icon_service_factory.h"
6 6
7 #include "base/memory/ptr_util.h" 7 #include "base/memory/ptr_util.h"
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "base/threading/sequenced_worker_pool.h"
10 #include "base/threading/thread_task_runner_handle.h" 9 #include "base/threading/thread_task_runner_handle.h"
11 #include "components/favicon/core/large_icon_service.h" 10 #include "components/favicon/core/large_icon_service.h"
12 #include "components/keyed_service/core/service_access_type.h" 11 #include "components/keyed_service/core/service_access_type.h"
13 #include "components/keyed_service/ios/browser_state_dependency_manager.h" 12 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
14 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" 13 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h"
15 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" 14 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
16 #include "ios/chrome/browser/favicon/favicon_service_factory.h" 15 #include "ios/chrome/browser/favicon/favicon_service_factory.h"
17 #include "ios/web/public/web_thread.h" 16 #include "ios/web/public/web_thread.h"
18 17
19 // static 18 // static
(...skipping 25 matching lines...) Expand all
45 return base::MakeUnique<favicon::LargeIconService>( 44 return base::MakeUnique<favicon::LargeIconService>(
46 ios::FaviconServiceFactory::GetForBrowserState( 45 ios::FaviconServiceFactory::GetForBrowserState(
47 browser_state, ServiceAccessType::EXPLICIT_ACCESS), 46 browser_state, ServiceAccessType::EXPLICIT_ACCESS),
48 web::WebThread::GetBlockingPool()); 47 web::WebThread::GetBlockingPool());
49 } 48 }
50 49
51 web::BrowserState* IOSChromeLargeIconServiceFactory::GetBrowserStateToUse( 50 web::BrowserState* IOSChromeLargeIconServiceFactory::GetBrowserStateToUse(
52 web::BrowserState* context) const { 51 web::BrowserState* context) const {
53 return GetBrowserStateOwnInstanceInIncognito(context); 52 return GetBrowserStateOwnInstanceInIncognito(context);
54 } 53 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/application_context_impl.cc ('k') | ios/chrome/browser/google/google_logo_service.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698