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

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

Issue 8334030: Merge search engines sync data type with Preferences. Sync the default search provider. Add some ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ 5 #ifndef CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_
6 #define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ 6 #define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 CreateSyncDataFromTemplateURL); 329 CreateSyncDataFromTemplateURL);
330 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest, 330 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest,
331 CreateTemplateURLFromSyncData); 331 CreateTemplateURLFromSyncData);
332 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest, UniquifyKeyword); 332 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest, UniquifyKeyword);
333 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest, 333 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest,
334 ResolveSyncKeywordConflict); 334 ResolveSyncKeywordConflict);
335 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest, 335 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest,
336 FindDuplicateOfSyncTemplateURL); 336 FindDuplicateOfSyncTemplateURL);
337 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest, 337 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest,
338 MergeSyncAndLocalURLDuplicates); 338 MergeSyncAndLocalURLDuplicates);
339 FRIEND_TEST_ALL_PREFIXES(TemplateURLServiceSyncTest,
340 CreateGUIDToSyncDataMap);
341 339
342 friend class TemplateURLServiceTestUtil; 340 friend class TemplateURLServiceTestUtil;
343 341
344 typedef std::map<string16, const TemplateURL*> KeywordToTemplateMap; 342 typedef std::map<string16, const TemplateURL*> KeywordToTemplateMap;
345 typedef std::map<std::string, const TemplateURL*> GUIDToTemplateMap; 343 typedef std::map<std::string, const TemplateURL*> GUIDToTemplateMap;
346 344
347 // Helper functor for FindMatchingKeywords(), for finding the range of 345 // Helper functor for FindMatchingKeywords(), for finding the range of
348 // keywords which begin with a prefix. 346 // keywords which begin with a prefix.
349 class LessWithPrefix; 347 class LessWithPrefix;
350 348
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 // FindDuplcateOfSyncTemplateURL, merges the two. If |sync_url| is newer, this 487 // FindDuplcateOfSyncTemplateURL, merges the two. If |sync_url| is newer, this
490 // replaces |local_url| with |sync_url| using the service's Remove and Add. 488 // replaces |local_url| with |sync_url| using the service's Remove and Add.
491 // If |local_url| is newer, this copies the GUID from |sync_url| over to 489 // If |local_url| is newer, this copies the GUID from |sync_url| over to
492 // |local_url| and adds an update to change_list to notify the server of the 490 // |local_url| and adds an update to change_list to notify the server of the
493 // change. This method takes ownership of |sync_url|, and adds it to the model 491 // change. This method takes ownership of |sync_url|, and adds it to the model
494 // if it is newer, so the caller must release it if need be. 492 // if it is newer, so the caller must release it if need be.
495 void MergeSyncAndLocalURLDuplicates(TemplateURL* sync_url, 493 void MergeSyncAndLocalURLDuplicates(TemplateURL* sync_url,
496 TemplateURL* local_url, 494 TemplateURL* local_url,
497 SyncChangeList* change_list); 495 SyncChangeList* change_list);
498 496
497 // Checks a newly added TemplateURL from Sync by its sync_guid and sets it as
498 // the default search provider if we were waiting for it.
499 void CheckForSyncedDefaultSearchProvider(const std::string& guid);
jeanluc1 2011/11/08 19:49:41 Seems like the "sets it as the default" is the mor
SteveT 2011/11/08 21:40:04 Agreed. Done.
500
501 // Retrieve the pending default search provider according to Sync. Returns
502 // NULL if there was no pending search provider from Sync.
503 const TemplateURL* GetPendingSyncedDefaultSearchProvder();
504
499 content::NotificationRegistrar registrar_; 505 content::NotificationRegistrar registrar_;
500 506
501 // Mapping from keyword to the TemplateURL. 507 // Mapping from keyword to the TemplateURL.
502 KeywordToTemplateMap keyword_to_template_map_; 508 KeywordToTemplateMap keyword_to_template_map_;
503 509
504 // Mapping from Sync GUIDs to the TemplateURL. 510 // Mapping from Sync GUIDs to the TemplateURL.
505 GUIDToTemplateMap guid_to_template_map_; 511 GUIDToTemplateMap guid_to_template_map_;
506 512
507 TemplateURLVector template_urls_; 513 TemplateURLVector template_urls_;
508 514
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 // will look up the most recent values anyways). 573 // will look up the most recent values anyways).
568 bool models_associated_; 574 bool models_associated_;
569 575
570 // Whether we're currently processing changes from the syncer. While this is 576 // Whether we're currently processing changes from the syncer. While this is
571 // true, we ignore any local search engine changes, since we triggered them. 577 // true, we ignore any local search engine changes, since we triggered them.
572 bool processing_syncer_changes_; 578 bool processing_syncer_changes_;
573 579
574 // Sync's SyncChange handler. We push all our changes through this. 580 // Sync's SyncChange handler. We push all our changes through this.
575 SyncChangeProcessor* sync_processor_; 581 SyncChangeProcessor* sync_processor_;
576 582
583 // Whether or not we are waiting on the default search provider to come in
584 // from Sync. This is to facilitate the fact that changes to the value of
585 // prefs::kSyncedDefaultSearchProviderGUID do not always come before the
586 // TemplateURL entry it refers to.
Nicolas Zea 2011/11/08 19:57:27 As I understand it, this is not only for when we'r
SteveT 2011/11/08 21:40:04 Yeah, that's correct. Beefed up the comment.
587 bool pending_synced_default_search_;
588
577 DISALLOW_COPY_AND_ASSIGN(TemplateURLService); 589 DISALLOW_COPY_AND_ASSIGN(TemplateURLService);
578 }; 590 };
579 591
580 #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_ 592 #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698