| Index: chrome/browser/ui/views/omnibox/omnibox_view_views.h
|
| diff --git a/chrome/browser/ui/views/omnibox/omnibox_view_views.h b/chrome/browser/ui/views/omnibox/omnibox_view_views.h
|
| index 0140485938b2d334e662a7569b7db7e324a73c10..358d84bd8ba99a53c3ba3c40a16a5f8ae52c41bc 100644
|
| --- a/chrome/browser/ui/views/omnibox/omnibox_view_views.h
|
| +++ b/chrome/browser/ui/views/omnibox/omnibox_view_views.h
|
| @@ -111,6 +111,7 @@ class OmniboxViewViews
|
| virtual void SelectAll(bool reversed) OVERRIDE;
|
| virtual void UpdatePopup() OVERRIDE;
|
| virtual void SetFocus() OVERRIDE;
|
| + virtual void ApplyCaretVisibility() OVERRIDE;
|
| virtual void OnTemporaryTextMaybeChanged(
|
| const string16& display_text,
|
| bool save_original_selection) OVERRIDE;
|
| @@ -217,6 +218,10 @@ class OmniboxViewViews
|
| // allow the user to select just a portion of the text.
|
| bool select_all_on_mouse_release_;
|
|
|
| + // Used to keep track of the visible caret color so that it can be restored
|
| + // after the caret has been hidden.
|
| + SkColor visible_caret_color_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(OmniboxViewViews);
|
| };
|
|
|
|
|