| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 void UpdateContextMenu(ui::SimpleMenuModel* menu_contents) override; | 206 void UpdateContextMenu(ui::SimpleMenuModel* menu_contents) override; |
| 207 | 207 |
| 208 Profile* profile_; | 208 Profile* profile_; |
| 209 | 209 |
| 210 // When true, the location bar view is read only and also is has a slightly | 210 // When true, the location bar view is read only and also is has a slightly |
| 211 // different presentation (smaller font size). This is used for popups. | 211 // different presentation (smaller font size). This is used for popups. |
| 212 bool popup_window_mode_; | 212 bool popup_window_mode_; |
| 213 | 213 |
| 214 scoped_ptr<OmniboxPopupView> popup_view_; | 214 scoped_ptr<OmniboxPopupView> popup_view_; |
| 215 | 215 |
| 216 SecurityStateModel::SecurityLevel security_level_; | 216 security_state::SecurityStateModel::SecurityLevel security_level_; |
| 217 | 217 |
| 218 // Selection persisted across temporary text changes, like popup suggestions. | 218 // Selection persisted across temporary text changes, like popup suggestions. |
| 219 gfx::Range saved_temporary_selection_; | 219 gfx::Range saved_temporary_selection_; |
| 220 | 220 |
| 221 // Holds the user's selection across focus changes. There is only a saved | 221 // Holds the user's selection across focus changes. There is only a saved |
| 222 // selection if this range IsValid(). | 222 // selection if this range IsValid(). |
| 223 gfx::Range saved_selection_for_focus_change_; | 223 gfx::Range saved_selection_for_focus_change_; |
| 224 | 224 |
| 225 // Tracking state before and after a possible change. | 225 // Tracking state before and after a possible change. |
| 226 base::string16 text_before_change_; | 226 base::string16 text_before_change_; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 253 // painted. Used to measure omnibox responsiveness with a histogram. | 253 // painted. Used to measure omnibox responsiveness with a histogram. |
| 254 base::TimeTicks insert_char_time_; | 254 base::TimeTicks insert_char_time_; |
| 255 | 255 |
| 256 // Used to bind callback functions to this object. | 256 // Used to bind callback functions to this object. |
| 257 base::WeakPtrFactory<OmniboxViewViews> weak_ptr_factory_; | 257 base::WeakPtrFactory<OmniboxViewViews> weak_ptr_factory_; |
| 258 | 258 |
| 259 DISALLOW_COPY_AND_ASSIGN(OmniboxViewViews); | 259 DISALLOW_COPY_AND_ASSIGN(OmniboxViewViews); |
| 260 }; | 260 }; |
| 261 | 261 |
| 262 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ | 262 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ |
| OLD | NEW |