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

Side by Side Diff: chrome/browser/history/history_service.h

Issue 808123003: Eliminate sending NOTIFICATION_HISTORY_KEYWORD_SEARCH_TERM_UPDATED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated patch for android port Created 5 years, 12 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
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 #ifndef CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_ 5 #ifndef CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_
6 #define CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_ 6 #define CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_
7 7
8 #include <set> 8 #include <set>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 // modified. |changed_urls| contains the list of affects URLs. 608 // modified. |changed_urls| contains the list of affects URLs.
609 void NotifyURLsModified(const history::URLRows& changed_urls); 609 void NotifyURLsModified(const history::URLRows& changed_urls);
610 610
611 // Notify all HistoryServiceObservers registered that the 611 // Notify all HistoryServiceObservers registered that the
612 // HistoryService has finished loading. 612 // HistoryService has finished loading.
613 void NotifyHistoryServiceLoaded(); 613 void NotifyHistoryServiceLoaded();
614 614
615 // HistoryService is being deleted. 615 // HistoryService is being deleted.
616 void NotifyHistoryServiceBeingDeleted(); 616 void NotifyHistoryServiceBeingDeleted();
617 617
618 void NotifyHistoryKeywordSearchTermUpdated(const history::URLRow& row,
sdefresne 2014/12/24 09:03:43 style: please comment this method
Abhishek 2014/12/24 19:39:41 Done.
619 history::KeywordID keyword_id,
620 const base::string16& term);
621
618 // Favicon ------------------------------------------------------------------- 622 // Favicon -------------------------------------------------------------------
619 623
620 // These favicon methods are exposed to the FaviconService. Instead of calling 624 // These favicon methods are exposed to the FaviconService. Instead of calling
621 // these methods directly you should call the respective method on the 625 // these methods directly you should call the respective method on the
622 // FaviconService. 626 // FaviconService.
623 627
624 // Used by FaviconService to get the favicon bitmaps from the history backend 628 // Used by FaviconService to get the favicon bitmaps from the history backend
625 // whose edge sizes most closely match |desired_sizes| for |icon_types|. If 629 // whose edge sizes most closely match |desired_sizes| for |icon_types|. If
626 // |desired_sizes| has a '0' entry, the largest favicon bitmap for 630 // |desired_sizes| has a '0' entry, the largest favicon bitmap for
627 // |icon_types| is returned. The returned FaviconBitmapResults will have at 631 // |icon_types| is returned. The returned FaviconBitmapResults will have at
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 909
906 history::DeleteDirectiveHandler delete_directive_handler_; 910 history::DeleteDirectiveHandler delete_directive_handler_;
907 911
908 // All vended weak pointers are invalidated in Cleanup(). 912 // All vended weak pointers are invalidated in Cleanup().
909 base::WeakPtrFactory<HistoryService> weak_ptr_factory_; 913 base::WeakPtrFactory<HistoryService> weak_ptr_factory_;
910 914
911 DISALLOW_COPY_AND_ASSIGN(HistoryService); 915 DISALLOW_COPY_AND_ASSIGN(HistoryService);
912 }; 916 };
913 917
914 #endif // CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_ 918 #endif // CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698