diff options
author | ivankr@chromium.org <ivankr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-18 13:10:02 +0000 |
---|---|---|
committer | ivankr@chromium.org <ivankr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-18 13:10:02 +0000 |
commit | 27db38ef4c9d27c1fe27100b5e222b8ac43f54e1 (patch) | |
tree | 9d0e3d08568a3d8f44c2db33f95b9c5854e80a05 /chrome/browser/protector/default_search_provider_change.cc | |
parent | 66c9e82bfe85d39a161be5f109b02c467374914e (diff) | |
download | chromium_src-27db38ef4c9d27c1fe27100b5e222b8ac43f54e1.zip chromium_src-27db38ef4c9d27c1fe27100b5e222b8ac43f54e1.tar.gz chromium_src-27db38ef4c9d27c1fe27100b5e222b8ac43f54e1.tar.bz2 |
Revert 110684 - Protector strings and bubble/SettingsChange code refactoring.
BUG=102765,103317
TEST=Manual
Review URL: http://codereview.chromium.org/8590036
TBR=ivankr@chromium.org
Review URL: http://codereview.chromium.org/8586050
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110689 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/protector/default_search_provider_change.cc')
-rw-r--r-- | chrome/browser/protector/default_search_provider_change.cc | 181 |
1 files changed, 43 insertions, 138 deletions
diff --git a/chrome/browser/protector/default_search_provider_change.cc b/chrome/browser/protector/default_search_provider_change.cc index fd845a8..9075f41 100644 --- a/chrome/browser/protector/default_search_provider_change.cc +++ b/chrome/browser/protector/default_search_provider_change.cc @@ -11,57 +11,33 @@ #include "chrome/browser/search_engines/template_url_service.h" #include "chrome/browser/webdata/keyword_table.h" #include "chrome/common/url_constants.h" -#include "grit/chromium_strings.h" -#include "grit/generated_resources.h" #include "googleurl/src/gurl.h" -#include "ui/base/l10n/l10n_util.h" namespace protector { -namespace { - -// Maximum length of the search engine name to be displayed. -const size_t kMaxDisplayedNameLength = 10; - -} // namespace - class DefaultSearchProviderChange : public SettingChange { public: DefaultSearchProviderChange(const TemplateURL* old_url, const TemplateURL* new_url); // SettingChange overrides: - virtual bool Init(Protector* protector) OVERRIDE; - virtual void Apply(Protector* protector) OVERRIDE; - virtual void Discard(Protector* protector) OVERRIDE; - virtual string16 GetTitle() const OVERRIDE; - virtual string16 GetMessage() const OVERRIDE; - virtual string16 GetApplyButtonText() const OVERRIDE; - virtual string16 GetDiscardButtonText() const OVERRIDE; + virtual string16 GetOldSetting() const OVERRIDE; + virtual string16 GetNewSetting() const OVERRIDE; + virtual void Accept(Protector* protector) OVERRIDE; + virtual void Revert(Protector* protector) OVERRIDE; + virtual void DoDefault(Protector* protector) OVERRIDE; private: virtual ~DefaultSearchProviderChange(); // Sets the given default search provider to profile that |protector| is - // guarding. Returns the |TemplateURL| instance the default search provider - // has been set to. If no search provider with |id| exists and - // |allow_fallback| is true, sets one of the prepoluated search providers. - const TemplateURL* SetDefaultSearchProvider(Protector* protector, - int64 id, - bool allow_fallback); - - // Opens the Search engine settings page in a new tab. - void OpenSearchEngineSettings(Protector* protector); + // guarding. + void SetDefaultSearchProvider(Protector* protector, int64 id); int64 old_id_; int64 new_id_; - // ID of the search engine that we fall back to if the backup is lost. - int64 fallback_id_; string16 old_name_; string16 new_name_; - // Name of the search engine that we fall back to if the backup is lost. - string16 fallback_name_; - string16 product_name_; DISALLOW_COPY_AND_ASSIGN(DefaultSearchProviderChange); }; @@ -69,14 +45,12 @@ class DefaultSearchProviderChange : public SettingChange { DefaultSearchProviderChange::DefaultSearchProviderChange( const TemplateURL* old_url, const TemplateURL* new_url) - : old_id_(0), - new_id_(0), - fallback_id_(0), - product_name_(l10n_util::GetStringUTF16(IDS_PRODUCT_NAME)) { - if (new_url) { - new_id_ = new_url->id(); - new_name_ = new_url->short_name(); - } + : SettingChange(kSearchEngineChanged), + old_id_(0), + new_id_(0) { + DCHECK(new_url); + new_id_ = new_url->id(); + new_name_ = new_url->short_name(); if (old_url) { old_id_ = old_url->id(); old_name_ = old_url->short_name(); @@ -86,124 +60,55 @@ DefaultSearchProviderChange::DefaultSearchProviderChange( DefaultSearchProviderChange::~DefaultSearchProviderChange() { } -bool DefaultSearchProviderChange::Init(Protector* protector) { - // Initially reset the search engine to its previous setting. - const TemplateURL* current_url = - SetDefaultSearchProvider(protector, old_id_, true); - if (!current_url) - return false; - if (!old_id_ || current_url->id() != old_id_) { - // Old settings is lost or invalid, so we had to fall back to one of the - // prepopulated search engines. - fallback_id_ = current_url->id(); - fallback_name_ = current_url->short_name(); - VLOG(1) << "Fallback to " << fallback_name_; - } - return true; +string16 DefaultSearchProviderChange::GetOldSetting() const { + return old_name_; } -void DefaultSearchProviderChange::Apply(Protector* protector) { - // TODO(avayvod): Add histrogram. - if (!new_id_) { - // Open settings page in case the new setting is invalid. - OpenSearchEngineSettings(protector); - } else { - SetDefaultSearchProvider(protector, new_id_, false); - } +string16 DefaultSearchProviderChange::GetNewSetting() const { + return new_name_; } -void DefaultSearchProviderChange::Discard(Protector* protector) { +void DefaultSearchProviderChange::Accept(Protector* protector) { + SetDefaultSearchProvider(protector, new_id_); // TODO(avayvod): Add histrogram. - if (!old_id_) { - // Open settings page in case the old setting is invalid. - OpenSearchEngineSettings(protector); - } - // Nothing to do otherwise since we have already set the search engine - // to |old_id_| in |Init|. -} - -string16 DefaultSearchProviderChange::GetTitle() const { - return l10n_util::GetStringUTF16(IDS_SEARCH_ENGINE_CHANGE_TITLE); } -string16 DefaultSearchProviderChange::GetMessage() const { - if (fallback_name_.empty()) - return l10n_util::GetStringFUTF16( - IDS_SEARCH_ENGINE_CHANGE_MESSAGE, product_name_); - else - return l10n_util::GetStringFUTF16( - IDS_SEARCH_ENGINE_CHANGE_NO_BACKUP_MESSAGE, - product_name_, fallback_name_); -} - -string16 DefaultSearchProviderChange::GetApplyButtonText() const { - if (new_id_) { - if (new_id_ == fallback_id_) { - // Old search engine is lost, the fallback search engine is the same as - // the new one so no need to show this button. - return string16(); - } - if (new_name_.length() > kMaxDisplayedNameLength) - return l10n_util::GetStringUTF16(IDS_CHANGE_SEARCH_ENGINE_NO_NAME); - else - return l10n_util::GetStringFUTF16(IDS_CHANGE_SEARCH_ENGINE, new_name_); - } else if (old_id_) { - // New setting is lost, offer to go to settings. - return l10n_util::GetStringUTF16(IDS_SELECT_SEARCH_ENGINE); - } else { - // Both settings are lost: don't show this button. - return string16(); +void DefaultSearchProviderChange::Revert(Protector* protector) { + SetDefaultSearchProvider(protector, old_id_); + if (!old_id_) { + // Open settings page in case the original setting was lost. + protector->OpenTab( + GURL(std::string(chrome::kChromeUISettingsURL) + + chrome::kSearchEnginesSubPage)); } + // TODO(avayvod): Add histrogram. } -string16 DefaultSearchProviderChange::GetDiscardButtonText() const { - if (old_id_) { - if (new_name_.length() > kMaxDisplayedNameLength) - return l10n_util::GetStringUTF16(IDS_KEEP_SETTING); - else - return l10n_util::GetStringFUTF16(IDS_KEEP_SEARCH_ENGINE, old_name_); - } else { - // Old setting is lost, offer to go to settings. - return l10n_util::GetStringUTF16(IDS_SELECT_SEARCH_ENGINE); - } +void DefaultSearchProviderChange::DoDefault(Protector* protector) { + SetDefaultSearchProvider(protector, old_id_); + // TODO(avayvod): Add histrogram. } -const TemplateURL* DefaultSearchProviderChange::SetDefaultSearchProvider( +void DefaultSearchProviderChange::SetDefaultSearchProvider( Protector* protector, - int64 id, - bool allow_fallback) { + int64 id) { + DCHECK(protector); TemplateURLService* url_service = protector->GetTemplateURLService(); if (!url_service) { - NOTREACHED() << "Can't get TemplateURLService object."; - return NULL; + LOG(WARNING) << "Can't get TemplateURLService object."; + return; } const TemplateURL* url = NULL; - if (id) { - const TemplateURLService::TemplateURLVector& urls = - url_service->GetTemplateURLs(); - for (size_t i = 0; i < urls.size(); ++i) { - if (urls[i]->id() == id) { - url = urls[i]; - break; - } + const TemplateURLService::TemplateURLVector& urls = + url_service->GetTemplateURLs(); + for (size_t i = 0; i < urls.size(); ++i) + if (urls[i]->id() == id) { + url = urls[i]; + break; } - } - if (!url && allow_fallback) { + if (!url) url = url_service->FindNewDefaultSearchProvider(); - DCHECK(url); - } - if (url) { - url_service->SetDefaultSearchProvider(url); - VLOG(1) << "Default search provider set to: " << url->short_name(); - } - return url; -} - -void DefaultSearchProviderChange::OpenSearchEngineSettings( - Protector* protector) { - protector->OpenTab( - GURL(std::string(chrome::kChromeUISettingsURL) + - chrome::kSearchEnginesSubPage)); + url_service->SetDefaultSearchProvider(url); } SettingChange* CreateDefaultSearchProviderChange( |