| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/logo_service.h" | 5 #include "chrome/browser/android/logo_service.h" |
| 6 | 6 |
| 7 #include "base/feature_list.h" | 7 #include "base/feature_list.h" |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "base/threading/thread_task_runner_handle.h" | 10 #include "base/threading/thread_task_runner_handle.h" |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 return; | 110 return; |
| 111 | 111 |
| 112 TemplateURL* template_url = template_url_service->GetDefaultSearchProvider(); | 112 TemplateURL* template_url = template_url_service->GetDefaultSearchProvider(); |
| 113 if (!template_url || !template_url->url_ref().HasGoogleBaseURLs( | 113 if (!template_url || !template_url->url_ref().HasGoogleBaseURLs( |
| 114 template_url_service->search_terms_data())) | 114 template_url_service->search_terms_data())) |
| 115 return; | 115 return; |
| 116 | 116 |
| 117 if (!logo_tracker_) { | 117 if (!logo_tracker_) { |
| 118 logo_tracker_.reset(new LogoTracker( | 118 logo_tracker_.reset(new LogoTracker( |
| 119 profile_->GetPath().Append(kCachedLogoDirectory), | 119 profile_->GetPath().Append(kCachedLogoDirectory), |
| 120 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE), | 120 BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE), |
| 121 BrowserThread::GetBlockingPool(), profile_->GetRequestContext(), | 121 BrowserThread::GetBlockingPool(), profile_->GetRequestContext(), |
| 122 std::unique_ptr<search_provider_logos::LogoDelegate>( | 122 std::unique_ptr<search_provider_logos::LogoDelegate>( |
| 123 new ChromeLogoDelegate()))); | 123 new ChromeLogoDelegate()))); |
| 124 } | 124 } |
| 125 | 125 |
| 126 logo_tracker_->SetServerAPI( | 126 logo_tracker_->SetServerAPI( |
| 127 GetGoogleDoodleURL(profile_), | 127 GetGoogleDoodleURL(profile_), |
| 128 base::Bind(&search_provider_logos::GoogleParseLogoResponse), | 128 base::Bind(&search_provider_logos::GoogleParseLogoResponse), |
| 129 base::Bind(&search_provider_logos::GoogleAppendQueryparamsToLogoURL), | 129 base::Bind(&search_provider_logos::GoogleAppendQueryparamsToLogoURL), |
| 130 true, /* wants_cta */ | 130 true, /* wants_cta */ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 152 } | 152 } |
| 153 | 153 |
| 154 LogoServiceFactory::~LogoServiceFactory() {} | 154 LogoServiceFactory::~LogoServiceFactory() {} |
| 155 | 155 |
| 156 KeyedService* LogoServiceFactory::BuildServiceInstanceFor( | 156 KeyedService* LogoServiceFactory::BuildServiceInstanceFor( |
| 157 content::BrowserContext* context) const { | 157 content::BrowserContext* context) const { |
| 158 Profile* profile = static_cast<Profile*>(context); | 158 Profile* profile = static_cast<Profile*>(context); |
| 159 DCHECK(!profile->IsOffTheRecord()); | 159 DCHECK(!profile->IsOffTheRecord()); |
| 160 return new LogoService(profile); | 160 return new LogoService(profile); |
| 161 } | 161 } |
| OLD | NEW |