diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-04 23:05:49 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-04 23:05:49 +0000 |
commit | 4fc67df160ee9b6a4bdfd9c882526cc298e6bf18 (patch) | |
tree | b90a5d265bbc58336e8b4fd865177ef75a580dd7 /chrome/browser/ui/omnibox/location_bar.h | |
parent | 44d20a24210b53284acd11f68005e6b469c40434 (diff) | |
download | chromium_src-4fc67df160ee9b6a4bdfd9c882526cc298e6bf18.zip chromium_src-4fc67df160ee9b6a4bdfd9c882526cc298e6bf18.tar.gz chromium_src-4fc67df160ee9b6a4bdfd9c882526cc298e6bf18.tar.bz2 |
Eliminate common implementations in OmniboxEditController subclasses by moving
to the callsites or to the base class.
BUG=none
TEST=none
R=sky@chromium.org
Review URL: https://codereview.chromium.org/25855008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@227124 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 | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/chrome/browser/ui/omnibox/location_bar.h b/chrome/browser/ui/omnibox/location_bar.h index 8d78f37..31f641c 100644 --- a/chrome/browser/ui/omnibox/location_bar.h +++ b/chrome/browser/ui/omnibox/location_bar.h @@ -31,15 +31,9 @@ class LocationBar { // Shows the first run bubble anchored to the location bar. virtual void ShowFirstRunBubble() = 0; - // Returns the string of text entered in the location bar. + // The details necessary to open the user's desired omnibox match. virtual GURL GetDestinationURL() const = 0; - - // Returns the WindowOpenDisposition that should be used to determine where - // to open a URL entered in the location bar. virtual WindowOpenDisposition GetWindowOpenDisposition() const = 0; - - // Returns the PageTransition that should be recorded in history when the URL - // entered in the location bar is loaded. virtual content::PageTransition GetPageTransition() const = 0; // Accepts the current string of text entered in the location bar. |