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

Unified Diff: chrome/browser/search_engines/template_url_service.h

Issue 280113002: Revert of Use the DefaultSearchManager as the exclusive authority on DSE, ignoring Web Data. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/search_engines/template_url_service.h
diff --git a/chrome/browser/search_engines/template_url_service.h b/chrome/browser/search_engines/template_url_service.h
index 8d5f5537a4e1022d3e16e712c825e9609f3d809e..654b25c28d443395f5468429635459c1066c5586 100644
--- a/chrome/browser/search_engines/template_url_service.h
+++ b/chrome/browser/search_engines/template_url_service.h
@@ -137,8 +137,8 @@
// Saves enough of url to |prefs| so that it can be loaded from preferences on
// start up.
- static void SaveDefaultSearchProviderToPrefs(const TemplateURL* url,
- PrefService* prefs);
+ void SaveDefaultSearchProviderToPrefs(const TemplateURL* url,
+ PrefService* prefs) const;
// Returns true if there is no TemplateURL that conflicts with the
// keyword/url pair, or there is one but it can be replaced. If there is an
@@ -175,8 +175,7 @@
// Takes ownership of |template_url| and adds it to this model. For obvious
// reasons, it is illegal to Add() the same |template_url| pointer twice.
- // Returns true if the Add is successful.
- bool Add(TemplateURL* template_url);
+ void Add(TemplateURL* template_url);
// Like Add(), but overwrites the |template_url|'s values with the provided
// ones.
@@ -262,9 +261,7 @@
bool IsSearchResultsPageFromDefaultSearchProvider(const GURL& url);
// Returns true if the default search is managed through group policy.
- bool is_default_search_managed() const {
- return default_search_provider_source_ == DefaultSearchManager::FROM_POLICY;
- }
+ bool is_default_search_managed() const { return is_default_search_managed_; }
// Returns true if the default search provider is controlled by an extension.
bool IsExtensionControlledDefaultSearch();
@@ -387,20 +384,9 @@
static SyncDataMap CreateGUIDToSyncDataMap(
const syncer::SyncDataList& sync_data);
- // Indicates whether the pre-populated TemplateURLs should be disabled. May
- // only be true in tests.
- static bool fallback_search_engines_disabled() {
- return g_fallback_search_engines_disabled;
- }
-
#if defined(UNIT_TEST)
- // Disables the pre-populated TemplateURLs for testing purposes.
- static void set_fallback_search_engines_disabled(bool disabled) {
- g_fallback_search_engines_disabled = disabled;
- }
-
- // Sets a different time provider function, such as
- // base::MockTimeProvider::StaticNow, for testing calls to base::Time::Now.
+ // Set a different time provider function, such as
+ // base::MockTimeProvider::StaticNow, when testing calls to base::Time::Now.
void set_time_provider(TimeProvider* time_provider) {
time_provider_ = time_provider;
}
@@ -486,15 +472,8 @@
// Transitions to the loaded state.
void ChangeToLoadedState();
- // Called by DefaultSearchManager when the effective default search engine has
- // changed.
- void OnDefaultSearchChange(const TemplateURLData* new_dse_data,
- DefaultSearchManager::Source source);
-
- // Applies a DSE change. May be called at startup or after transitioning to
- // the loaded state.
- void ApplyDefaultSearchChange(const TemplateURLData* new_dse_data,
- DefaultSearchManager::Source source);
+ // Clears user preferences describing the default search engine.
+ void ClearDefaultProviderFromPrefs();
// Returns true if there is no TemplateURL that has a search url with the
// specified host, or the only TemplateURLs matching the specified host can
@@ -531,11 +510,6 @@
static void UpdateTemplateURLIfPrepopulated(TemplateURL* existing_turl,
Profile* profile);
- // If the TemplateURL's sync GUID matches the kSyncedDefaultSearchProviderGUID
- // preference it will be used to update the DSE in memory and as persisted in
- // preferences.
- void MaybeUpdateDSEAfterSync(TemplateURL* synced_turl);
-
// Returns the preferences we use.
PrefService* GetPrefs();
@@ -552,6 +526,26 @@
// TemplateURLs that have a replacement term of {google:baseURL} or
// {google:baseSuggestURL}.
void GoogleBaseURLChanged(const GURL& old_base_url);
+
+ // Update the default search. Called at initialization or when a managed
+ // preference has changed.
+ void UpdateDefaultSearch();
+
+ // Set the default search provider. |url| may be user-selected or
+ // automatically selected and may be null.
+ // This will assert if the default search is managed.
+ void SetDefaultSearchProvider(TemplateURL* url);
+
+ // Set the default search provider even if it is managed. |url| may be null.
+ // Caller is responsible for notifying observers. Returns whether |url| was
+ // found in |template_urls_|.
+ // If |url| is an extension-controlled search engine then preferences and the
+ // database are left untouched.
+ // If |url| is a normal search engine and the existing default search engine
+ // is controlled by an extension then |url| is propagated to the database and
+ // prefs but the extension-controlled default engine will continue to hide
+ // this value until the extension is uninstalled.
+ bool SetDefaultSearchProviderNoNotify(TemplateURL* url);
// Adds a new TemplateURL to this model. TemplateURLService will own the
// reference, and delete it when the TemplateURL is removed.
@@ -581,12 +575,14 @@
// model is loaded.
void NotifyObservers();
- // Updates |template_urls| so that the only "created by policy" entry is
- // |default_from_prefs|. |default_from_prefs| may be NULL if there is no
- // policy-defined DSE in effect.
- void UpdateProvidersCreatedByPolicy(
+ // Removes from the vector any template URL that was created because of
+ // policy. These TemplateURLs are freed and removed from the database.
+ // Sets default_search_provider to NULL if it was one of them, unless it is
+ // the same as the current default from preferences and it is managed.
+ void RemoveProvidersCreatedByPolicy(
TemplateURLVector* template_urls,
- const TemplateURLData* default_from_prefs);
+ TemplateURL** default_search_provider,
+ TemplateURLData* default_from_prefs);
// Resets the sync GUID of the specified TemplateURL and persists the change
// to the database. This does not notify observers.
@@ -644,6 +640,14 @@
SyncDataMap* local_data,
syncer::SyncMergeResult* merge_result);
+ // Checks a newly added TemplateURL from Sync by its sync_guid and sets it as
+ // the default search provider if we were waiting for it.
+ void SetDefaultSearchProviderIfNewlySynced(const std::string& guid);
+
+ // Retrieve the pending default search provider according to Sync. Returns
+ // NULL if there was no pending search provider from Sync.
+ TemplateURL* GetPendingSyncedDefaultSearchProvider();
+
// Goes through a vector of TemplateURLs and ensure that both the in-memory
// and database copies have valid sync_guids. This is to fix crbug.com/102038,
// where old entries were being pushed to Sync without a sync_guid.
@@ -651,34 +655,40 @@
void OnSyncedDefaultSearchProviderGUIDChanged();
- // Adds |template_urls| to |template_urls_|.
+ // Adds |template_urls| to |template_urls_| and sets up the default search
+ // provider. If |default_search_provider| is non-NULL, it must refer to one
+ // of the |template_urls|, and will be used as the new default.
//
// This transfers ownership of the elements in |template_urls| to |this|, and
// may delete some elements, so it's not safe for callers to access any
// elements after calling; to reinforce this, this function clears
// |template_urls| on exit.
- void AddTemplateURLs(TemplateURLVector* template_urls);
+ void AddTemplateURLsAndSetupDefaultEngine(
+ TemplateURLVector* template_urls,
+ TemplateURL* default_search_provider);
+
+ // If there is no current default search provider, sets the default to the
+ // result of calling FindNewDefaultSearchProvider().
+ void EnsureDefaultSearchProviderExists();
// Returns a new TemplateURL for the given extension.
TemplateURL* CreateTemplateURLForExtension(
const ExtensionKeyword& extension_keyword);
- // Returns the TemplateURL corresponding to |prepopulated_id|, if any.
- TemplateURL* FindPrepopulatedTemplateURL(int prepopulated_id);
-
// Returns the TemplateURL associated with |extension_id|, if any.
TemplateURL* FindTemplateURLForExtension(const std::string& extension_id,
TemplateURL::Type type);
- // Finds the extension-supplied TemplateURL that matches |data|, if any.
- TemplateURL* FindMatchingExtensionTemplateURL(const TemplateURLData& data,
- TemplateURL::Type type);
-
// Finds the most recently-installed NORMAL_CONTROLLED_BY_EXTENSION engine
- // that supports replacement and wants to be default, if any. Notifies the
- // DefaultSearchManager, which might change the effective default search
- // engine.
- void UpdateExtensionDefaultSearchEngine();
+ // that supports replacement and wants to be default, if any.
+ TemplateURL* FindExtensionDefaultSearchEngine() const;
+
+ // Sets the default search provider to:
+ // (1) BestDefaultExtensionControlledTURL(), if any; or,
+ // (2) LoadDefaultSearchProviderFromPrefs(), if we have a TURL with that ID;
+ // or,
+ // (3) FindNewDefaultSearchProvider().
+ void SetDefaultSearchProviderAfterRemovingDefaultExtension();
content::NotificationRegistrar notification_registrar_;
PrefChangeRegistrar pref_change_registrar_;
@@ -725,12 +735,12 @@
// TemplateURL owned by |template_urls_|.
TemplateURL* default_search_provider_;
- // A temporary location for the DSE until Web Data has been loaded and it can
- // be merged into |template_urls_|.
+ // The initial search provider extracted from preferences. This is only valid
+ // if we haven't been loaded or loading failed.
scoped_ptr<TemplateURL> initial_default_search_provider_;
- // Source of the default search provider.
- DefaultSearchManager::Source default_search_provider_source_;
+ // Whether the default search is managed via policy.
+ bool is_default_search_managed_;
// ID assigned to next TemplateURL added to this model. This is an ever
// increasing integer that is initialized from the database.
@@ -755,6 +765,13 @@
// Sync's error handler. We use it to create a sync error.
scoped_ptr<syncer::SyncErrorFactory> sync_error_factory_;
+ // Whether or not we are waiting on the default search provider to come in
+ // from Sync. This is to facilitate the fact that changes to the value of
+ // prefs::kSyncedDefaultSearchProviderGUID do not always come before the
+ // TemplateURL entry it refers to, and to handle the case when we want to use
+ // the Synced default when the default search provider becomes unmanaged.
+ bool pending_synced_default_search_;
+
// A set of sync GUIDs denoting TemplateURLs that have been removed from this
// model or the underlying WebDataService prior to MergeDataAndStartSyncing.
// This set is used to determine what entries from the server we want to
@@ -772,9 +789,6 @@
// Helper class to manage the default search engine.
DefaultSearchManager default_search_manager_;
- // Used to disable the prepopulated search engines in tests.
- static bool g_fallback_search_engines_disabled;
-
DISALLOW_COPY_AND_ASSIGN(TemplateURLService);
};

Powered by Google App Engine
This is Rietveld 408576698