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_SEARCH_INSTANT_SERVICE_OBSERVER_H_ |
| 6 #define CHROME_BROWSER_SEARCH_INSTANT_SERVICE_OBSERVER_H_ |
| 7 |
| 8 struct ThemeBackgroundInfo; |
| 9 |
| 10 // InstantServiceObserver defines the observer interface for InstantService. |
| 11 class InstantServiceObserver { |
| 12 public: |
| 13 // Indicates that the user's custom theme has changed in some way. |
| 14 virtual void ThemeInfoChanged(const ThemeBackgroundInfo&) = 0; |
| 15 |
| 16 protected: |
| 17 virtual ~InstantServiceObserver() {} |
| 18 }; |
| 19 |
| 20 #endif // CHROME_BROWSER_SEARCH_INSTANT_SERVICE_OBSERVER_H_ |
OLD | NEW |