| Index: chrome/browser/views/autocomplete/autocomplete_popup_win.h
|
| ===================================================================
|
| --- chrome/browser/views/autocomplete/autocomplete_popup_win.h (revision 31645)
|
| +++ chrome/browser/views/autocomplete/autocomplete_popup_win.h (working copy)
|
| @@ -12,34 +12,17 @@
|
|
|
| class AutocompletePopupWin : public views::WidgetWin {
|
| public:
|
| - explicit AutocompletePopupWin(AutocompletePopupContentsView* contents);
|
| + // Creates the popup and shows it. |edit_view| is the edit that created us.
|
| + AutocompletePopupWin(AutocompleteEditView* edit_view,
|
| + AutocompletePopupContentsView* contents);
|
| virtual ~AutocompletePopupWin();
|
|
|
| + private:
|
| // Overridden from WidgetWin:
|
| - virtual void Show();
|
| - virtual void Hide();
|
| -
|
| - // Creates the popup and shows it for the first time. |edit_view| is the edit
|
| - // that created us.
|
| - void Init(AutocompleteEditView* edit_view, views::View* contents);
|
| -
|
| - // Returns true if the popup is open.
|
| - bool IsOpen() const;
|
| -
|
| - // Returns true if the popup has been created.
|
| - bool IsCreated() const;
|
| -
|
| - protected:
|
| - // Overridden from WidgetWin:
|
| virtual LRESULT OnMouseActivate(HWND window,
|
| UINT hit_test,
|
| UINT mouse_message);
|
|
|
| - private:
|
| - AutocompletePopupContentsView* contents_;
|
| -
|
| - bool is_open_; // Used only for sanity-checking.
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(AutocompletePopupWin);
|
| };
|
|
|
|
|