OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_COCOA_OMNIBOX_OMNIBOX_VIEW_MAC_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_VIEW_MAC_H_ |
6 #define CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_VIEW_MAC_H_ | 6 #define CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_VIEW_MAC_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 size_t index, | 47 size_t index, |
48 const string16& keyword) OVERRIDE; | 48 const string16& keyword) OVERRIDE; |
49 virtual string16 GetText() const OVERRIDE; | 49 virtual string16 GetText() const OVERRIDE; |
50 virtual bool IsEditingOrEmpty() const OVERRIDE; | 50 virtual bool IsEditingOrEmpty() const OVERRIDE; |
51 virtual int GetIcon() const OVERRIDE; | 51 virtual int GetIcon() const OVERRIDE; |
52 virtual void SetUserText(const string16& text) OVERRIDE; | 52 virtual void SetUserText(const string16& text) OVERRIDE; |
53 virtual void SetUserText(const string16& text, | 53 virtual void SetUserText(const string16& text, |
54 const string16& display_text, | 54 const string16& display_text, |
55 bool update_popup) OVERRIDE; | 55 bool update_popup) OVERRIDE; |
56 virtual void SetWindowTextAndCaretPos(const string16& text, | 56 virtual void SetWindowTextAndCaretPos(const string16& text, |
57 size_t caret_pos) OVERRIDE; | 57 size_t caret_pos, |
| 58 bool update_popup, |
| 59 bool notify_text_changed) OVERRIDE; |
58 virtual void SetForcedQuery() OVERRIDE; | 60 virtual void SetForcedQuery() OVERRIDE; |
59 virtual bool IsSelectAll() OVERRIDE; | 61 virtual bool IsSelectAll() OVERRIDE; |
60 virtual bool DeleteAtEndPressed() OVERRIDE; | 62 virtual bool DeleteAtEndPressed() OVERRIDE; |
61 virtual void GetSelectionBounds(string16::size_type* start, | 63 virtual void GetSelectionBounds(string16::size_type* start, |
62 string16::size_type* end) const OVERRIDE; | 64 string16::size_type* end) const OVERRIDE; |
63 virtual void SelectAll(bool reversed) OVERRIDE; | 65 virtual void SelectAll(bool reversed) OVERRIDE; |
64 virtual void RevertAll() OVERRIDE; | 66 virtual void RevertAll() OVERRIDE; |
65 virtual void UpdatePopup() OVERRIDE; | 67 virtual void UpdatePopup() OVERRIDE; |
66 virtual void ClosePopup() OVERRIDE; | 68 virtual void ClosePopup() OVERRIDE; |
67 virtual void SetFocus() OVERRIDE; | 69 virtual void SetFocus() OVERRIDE; |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 // Was the delete key pressed with an empty selection at the end of the edit? | 213 // Was the delete key pressed with an empty selection at the end of the edit? |
212 bool delete_at_end_pressed_; | 214 bool delete_at_end_pressed_; |
213 | 215 |
214 // The maximum/standard line height for the displayed text. | 216 // The maximum/standard line height for the displayed text. |
215 CGFloat line_height_; | 217 CGFloat line_height_; |
216 | 218 |
217 DISALLOW_COPY_AND_ASSIGN(OmniboxViewMac); | 219 DISALLOW_COPY_AND_ASSIGN(OmniboxViewMac); |
218 }; | 220 }; |
219 | 221 |
220 #endif // CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_VIEW_MAC_H_ | 222 #endif // CHROME_BROWSER_UI_COCOA_OMNIBOX_OMNIBOX_VIEW_MAC_H_ |
OLD | NEW |