Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / ui / omnibox / omnibox_popup_model_observer.h
blobf16212594f57c6868c0d853d46a2bd315bc94383
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.
5 #ifndef CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_POPUP_MODEL_OBSERVER_H_
6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_POPUP_MODEL_OBSERVER_H_
8 // Allows observers to react and update accordingly when state of
9 // |OmniboxPopupModel| changes, e.g. when the omnibox popup is shown or hidden.
10 class OmniboxPopupModelObserver {
11 public:
12 // Informs observers that omnibox popup has been shown or hidden.
13 virtual void OnOmniboxPopupShownOrHidden() = 0;
16 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_POPUP_MODEL_OBSERVER_H_