Index: chrome/browser/search/instant_service_observer.h |
diff --git a/chrome/browser/search/instant_service_observer.h b/chrome/browser/search/instant_service_observer.h |
index c282c937e3ca0b3b475a3f4e4df9c61897419bf1..d8f0f8766fbc5376a6a7f47396a97da18ca86820 100644 |
--- a/chrome/browser/search/instant_service_observer.h |
+++ b/chrome/browser/search/instant_service_observer.h |
@@ -14,11 +14,15 @@ struct ThemeBackgroundInfo; |
class InstantServiceObserver { |
public: |
// Indicates that the user's custom theme has changed in some way. |
- virtual void ThemeInfoChanged(const ThemeBackgroundInfo&) = 0; |
+ virtual void ThemeInfoChanged(const ThemeBackgroundInfo&); |
// Indicates that the most visited items has changed. |
virtual void MostVisitedItemsChanged( |
- const std::vector<InstantMostVisitedItem>&) = 0; |
+ const std::vector<InstantMostVisitedItem>&); |
+ |
+ virtual void DefaultSearchProviderChanged(); |
samarth
2013/07/26 23:33:15
Please add comment for both the new methods.
Anuj
2013/07/31 07:16:18
Done.
|
+ |
+ virtual void GoogleURLUpdated(); |
protected: |
virtual ~InstantServiceObserver() {} |