Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 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_UI_OMNIBOX_OMNIBOX_POPUP_MODEL_OBSERVER_H_ | |
| 6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_POPUP_MODEL_OBSERVER_H_ | |
| 7 | |
| 8 // This class defines the observer interface for the |OmniboxPopupModel|. | |
|
Peter Kasting
2013/07/09 17:35:20
This comment restates the obvious. Instead, say w
kuan
2013/07/09 17:48:47
Done.
| |
| 9 class OmniboxPopupModelObserver { | |
| 10 public: | |
| 11 // Informs observers that omnibox popup has been shown or hidden. | |
| 12 virtual void OnOmniboxPopupShownOrHidden() = 0; | |
| 13 | |
| 14 protected: | |
| 15 virtual ~OmniboxPopupModelObserver() {} | |
|
Peter Kasting
2013/07/09 17:35:20
Is this necessary? I'd just omit this entirely.
kuan
2013/07/09 17:48:47
Done.
| |
| 16 }; | |
| 17 | |
| 18 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_POPUP_MODEL_OBSERVER_H_ | |
| OLD | NEW |