diff options
author | msw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-20 20:38:02 +0000 |
---|---|---|
committer | msw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-20 20:38:02 +0000 |
commit | e9ee7ea9df97a41c252a82c663c6b785b021e6e5 (patch) | |
tree | cff1a1a4a098c0c9b13f51bca9da64245343b9d9 /chrome/browser/ui/omnibox/location_bar.h | |
parent | f3f44c03f4eb3abc0dfed7c70b54552b1174f0fe (diff) | |
download | chromium_src-e9ee7ea9df97a41c252a82c663c6b785b021e6e5.zip chromium_src-e9ee7ea9df97a41c252a82c663c6b785b021e6e5.tar.gz chromium_src-e9ee7ea9df97a41c252a82c663c6b785b021e6e5.tar.bz2 |
Rename GetLocationEntry to GetOmniboxView.
LocationEntry is an outdated name for the Omnibox.
Other related renames and minor refactoring.
BUG=319037
TEST=none, no changes.
R=pkasting@chromium.org,sky@chromium.org
Review URL: https://codereview.chromium.org/63503005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236275 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/omnibox/location_bar.h')
-rw-r--r-- | chrome/browser/ui/omnibox/location_bar.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/ui/omnibox/location_bar.h b/chrome/browser/ui/omnibox/location_bar.h index 19c0778..07c5da7 100644 --- a/chrome/browser/ui/omnibox/location_bar.h +++ b/chrome/browser/ui/omnibox/location_bar.h @@ -74,9 +74,8 @@ class LocationBar { // Reverts the location bar. The bar's permanent text will be shown. virtual void Revert() = 0; - // Returns a pointer to the text entry view. - virtual const OmniboxView* GetLocationEntry() const = 0; - virtual OmniboxView* GetLocationEntry() = 0; + virtual const OmniboxView* GetOmniboxView() const = 0; + virtual OmniboxView* GetOmniboxView() = 0; // Returns a pointer to the testing interface. virtual LocationBarTesting* GetLocationBarForTesting() = 0; |