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

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

Issue 9834056: Moved WebDataService to ProfileKeyedService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unchanged file 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/template_url_service.h" 5 #include "chrome/browser/search_engines/template_url_service.h"
6 6
7 #include "base/auto_reset.h" 7 #include "base/auto_reset.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/environment.h" 9 #include "base/environment.h"
10 #include "base/i18n/case_conversion.h" 10 #include "base/i18n/case_conversion.h"
(...skipping 15 matching lines...) Expand all
26 #include "chrome/browser/protector/protector_service.h" 26 #include "chrome/browser/protector/protector_service.h"
27 #include "chrome/browser/protector/protector_service_factory.h" 27 #include "chrome/browser/protector/protector_service_factory.h"
28 #include "chrome/browser/rlz/rlz.h" 28 #include "chrome/browser/rlz/rlz.h"
29 #include "chrome/browser/search_engines/search_host_to_urls_map.h" 29 #include "chrome/browser/search_engines/search_host_to_urls_map.h"
30 #include "chrome/browser/search_engines/search_terms_data.h" 30 #include "chrome/browser/search_engines/search_terms_data.h"
31 #include "chrome/browser/search_engines/template_url.h" 31 #include "chrome/browser/search_engines/template_url.h"
32 #include "chrome/browser/search_engines/template_url_prepopulate_data.h" 32 #include "chrome/browser/search_engines/template_url_prepopulate_data.h"
33 #include "chrome/browser/search_engines/template_url_service_observer.h" 33 #include "chrome/browser/search_engines/template_url_service_observer.h"
34 #include "chrome/browser/search_engines/util.h" 34 #include "chrome/browser/search_engines/util.h"
35 #include "chrome/browser/sync/api/sync_change.h" 35 #include "chrome/browser/sync/api/sync_change.h"
36 #include "chrome/browser/webdata/web_data_service_factory.h"
36 #include "chrome/common/chrome_notification_types.h" 37 #include "chrome/common/chrome_notification_types.h"
37 #include "chrome/common/chrome_switches.h" 38 #include "chrome/common/chrome_switches.h"
38 #include "chrome/common/env_vars.h" 39 #include "chrome/common/env_vars.h"
39 #include "chrome/common/extensions/extension.h" 40 #include "chrome/common/extensions/extension.h"
40 #include "chrome/common/guid.h" 41 #include "chrome/common/guid.h"
41 #include "chrome/common/pref_names.h" 42 #include "chrome/common/pref_names.h"
42 #include "chrome/common/url_constants.h" 43 #include "chrome/common/url_constants.h"
43 #include "content/public/browser/notification_service.h" 44 #include "content/public/browser/notification_service.h"
44 #include "net/base/net_util.h" 45 #include "net/base/net_util.h"
45 #include "sync/protocol/search_engine_specifics.pb.h" 46 #include "sync/protocol/search_engine_specifics.pb.h"
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 483
483 void TemplateURLService::RemoveObserver(TemplateURLServiceObserver* observer) { 484 void TemplateURLService::RemoveObserver(TemplateURLServiceObserver* observer) {
484 model_observers_.RemoveObserver(observer); 485 model_observers_.RemoveObserver(observer);
485 } 486 }
486 487
487 void TemplateURLService::Load() { 488 void TemplateURLService::Load() {
488 if (loaded_ || load_handle_) 489 if (loaded_ || load_handle_)
489 return; 490 return;
490 491
491 if (!service_.get()) 492 if (!service_.get())
492 service_ = profile_->GetWebDataService(Profile::EXPLICIT_ACCESS); 493 service_ = WebDataServiceFactory::GetForProfile(profile_,
494 Profile::EXPLICIT_ACCESS);
Ilya Sherman 2012/03/27 01:01:17 nit: Please add curly braces.
GeorgeY 2012/03/30 19:20:12 Done.
493 495
494 if (service_.get()) { 496 if (service_.get()) {
495 load_handle_ = service_->GetKeywords(this); 497 load_handle_ = service_->GetKeywords(this);
496 } else { 498 } else {
497 ChangeToLoadedState(); 499 ChangeToLoadedState();
498 NotifyLoaded(); 500 NotifyLoaded();
499 } 501 }
500 } 502 }
501 503
502 void TemplateURLService::OnWebDataServiceRequestDone( 504 void TemplateURLService::OnWebDataServiceRequestDone(
(...skipping 1405 matching lines...) Expand 10 before | Expand all | Expand 10 after
1908 dst->set_input_encodings(input_encodings); 1910 dst->set_input_encodings(input_encodings);
1909 dst->set_show_in_default_list(specifics.show_in_default_list()); 1911 dst->set_show_in_default_list(specifics.show_in_default_list());
1910 dst->SetSuggestionsURL(specifics.suggestions_url(), 0, 0); 1912 dst->SetSuggestionsURL(specifics.suggestions_url(), 0, 0);
1911 dst->SetPrepopulateId(specifics.prepopulate_id()); 1913 dst->SetPrepopulateId(specifics.prepopulate_id());
1912 dst->set_autogenerate_keyword(specifics.autogenerate_keyword()); 1914 dst->set_autogenerate_keyword(specifics.autogenerate_keyword());
1913 dst->SetInstantURL(specifics.instant_url(), 0, 0); 1915 dst->SetInstantURL(specifics.instant_url(), 0, 0);
1914 dst->set_last_modified( 1916 dst->set_last_modified(
1915 base::Time::FromInternalValue(specifics.last_modified())); 1917 base::Time::FromInternalValue(specifics.last_modified()));
1916 dst->set_sync_guid(specifics.sync_guid()); 1918 dst->set_sync_guid(specifics.sync_guid());
1917 } 1919 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698