OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_INSTANT_INSTANT_SERVICE_OBSERVER_H_ | |
6 #define CHROME_BROWSER_INSTANT_INSTANT_SERVICE_OBSERVER_H_ | |
7 | |
8 // This class defines the observer interface for InstantService. | |
9 class InstantServiceObserver { | |
10 public: | |
11 virtual void InstantStatusChanged() = 0; | |
samarth
2013/03/01 17:59:53
Please document each of these.
sreeram
2013/03/07 18:18:46
Done.
| |
12 virtual void ThemeInfoChanged() = 0; | |
13 virtual void MostVisitedItemsChanged() = 0; | |
14 | |
15 // For use in tests only. | |
samarth
2013/03/01 17:59:53
I've seen an #ifdef UNIT_TEST in other places. Is
sreeram
2013/03/07 18:18:46
Done. Took this out. It was a bad idea to force re
| |
16 virtual void InstantSupportDecided() = 0; | |
17 | |
18 protected: | |
19 ~InstantServiceObserver() {} | |
20 }; | |
21 | |
22 #endif // CHROME_BROWSER_INSTANT_INSTANT_SERVICE_OBSERVER_H_ | |
OLD | NEW |