| Index: chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
|
| diff --git a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
|
| index 3a1746b936b86ca0bacf29bb23389513b687151a..fa10ed3d2500739fec6b9bfab51454c61f23a99f 100644
|
| --- a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
|
| +++ b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
|
| @@ -381,6 +381,18 @@ void LocationBarViewMac::Revert() {
|
| edit_view_->RevertAll();
|
| }
|
|
|
| +const AutocompleteEditView* LocationBarViewMac::location_entry() const {
|
| + return edit_view_.get();
|
| + }
|
| +
|
| +AutocompleteEditView* LocationBarViewMac::location_entry() {
|
| + return edit_view_.get();
|
| + }
|
| +
|
| +LocationBarTesting* LocationBarViewMac::GetLocationBarForTesting() {
|
| + return this;
|
| +}
|
| +
|
| // TODO(pamg): Change all these, here and for other platforms, to size_t.
|
| int LocationBarViewMac::PageActionCount() {
|
| return static_cast<int>(page_action_decorations_.size());
|
|
|