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

Side by Side Diff: chrome/browser/search_engines/search_provider_install_data.cc

Issue 9811022: Misc. small cleanups to minimize TemplateURL refactoring diffs: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/search_engines/search_provider_install_data.h" 5 #include "chrome/browser/search_engines/search_provider_install_data.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <functional> 8 #include <functional>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/message_loop_helpers.h" 15 #include "base/message_loop_helpers.h"
16 #include "chrome/browser/profiles/profile.h"
16 #include "chrome/browser/search_engines/search_host_to_urls_map.h" 17 #include "chrome/browser/search_engines/search_host_to_urls_map.h"
17 #include "chrome/browser/search_engines/search_terms_data.h" 18 #include "chrome/browser/search_engines/search_terms_data.h"
18 #include "chrome/browser/search_engines/template_url.h" 19 #include "chrome/browser/search_engines/template_url.h"
19 #include "chrome/browser/search_engines/template_url_service.h" 20 #include "chrome/browser/search_engines/template_url_service.h"
20 #include "chrome/browser/search_engines/util.h" 21 #include "chrome/browser/search_engines/util.h"
21 #include "chrome/browser/webdata/web_data_service.h" 22 #include "chrome/browser/webdata/web_data_service.h"
22 #include "chrome/common/chrome_notification_types.h" 23 #include "chrome/common/chrome_notification_types.h"
23 #include "content/public/browser/browser_thread.h" 24 #include "content/public/browser/browser_thread.h"
24 #include "content/public/browser/notification_observer.h" 25 #include "content/public/browser/notification_observer.h"
25 #include "content/public/browser/notification_registrar.h" 26 #include "content/public/browser/notification_registrar.h"
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 DCHECK(requested_origin == requested_origin.GetOrigin()); 147 DCHECK(requested_origin == requested_origin.GetOrigin());
147 return template_url && requested_origin == 148 return template_url && requested_origin ==
148 TemplateURLService::GenerateSearchURLUsingTermsData( 149 TemplateURLService::GenerateSearchURLUsingTermsData(
149 template_url, 150 template_url,
150 search_terms_data).GetOrigin(); 151 search_terms_data).GetOrigin();
151 } 152 }
152 153
153 } // namespace 154 } // namespace
154 155
155 SearchProviderInstallData::SearchProviderInstallData( 156 SearchProviderInstallData::SearchProviderInstallData(
156 WebDataService* web_service, 157 Profile* profile,
157 int ui_death_notification, 158 int ui_death_notification,
158 const content::NotificationSource& ui_death_source) 159 const content::NotificationSource& ui_death_source)
159 : web_service_(web_service), 160 : web_service_(profile->GetWebDataService(Profile::EXPLICIT_ACCESS)),
160 load_handle_(0), 161 load_handle_(0),
161 google_base_url_(UIThreadSearchTermsData().GoogleBaseURLValue()) { 162 google_base_url_(UIThreadSearchTermsData().GoogleBaseURLValue()) {
162 // GoogleURLObserver is responsible for killing itself when 163 // GoogleURLObserver is responsible for killing itself when
163 // the given notification occurs. 164 // the given notification occurs.
164 new GoogleURLObserver(new GoogleURLChangeNotifier(AsWeakPtr()), 165 new GoogleURLObserver(new GoogleURLChangeNotifier(AsWeakPtr()),
165 ui_death_notification, ui_death_source); 166 ui_death_notification, ui_death_source);
166 DetachFromThread(); 167 DetachFromThread();
167 } 168 }
168 169
169 SearchProviderInstallData::~SearchProviderInstallData() { 170 SearchProviderInstallData::~SearchProviderInstallData() {
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 294
294 std::for_each(closure_queue.begin(), 295 std::for_each(closure_queue.begin(),
295 closure_queue.end(), 296 closure_queue.end(),
296 std::mem_fun_ref(&base::Closure::Run)); 297 std::mem_fun_ref(&base::Closure::Run));
297 298
298 // Since we expect this request to be rare, clear out the information. This 299 // Since we expect this request to be rare, clear out the information. This
299 // also keeps the responses current as the search providers change. 300 // also keeps the responses current as the search providers change.
300 provider_map_.reset(); 301 provider_map_.reset();
301 SetDefault(NULL); 302 SetDefault(NULL);
302 } 303 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698