diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-23 23:26:52 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-23 23:26:52 +0000 |
commit | dc83fcbdc33081df9c30fd74c1d3395e32d5b0c5 (patch) | |
tree | f049d4cf588d1f40a16f69d5b91e9045a7ee9329 /content | |
parent | 3e9a0c961c383936c16210f57c68f9b73a1a8a95 (diff) | |
download | chromium_src-dc83fcbdc33081df9c30fd74c1d3395e32d5b0c5.zip chromium_src-dc83fcbdc33081df9c30fd74c1d3395e32d5b0c5.tar.gz chromium_src-dc83fcbdc33081df9c30fd74c1d3395e32d5b0c5.tar.bz2 |
Remove "virtual" from AddInfoBar() method.
BUG=None
TEST=compiled locally and trybots
Review URL: http://codereview.chromium.org/6532080
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75814 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/tab_contents/tab_contents.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/tab_contents/tab_contents.h b/content/browser/tab_contents/tab_contents.h index 2ab486a..13ccafd 100644 --- a/content/browser/tab_contents/tab_contents.h +++ b/content/browser/tab_contents/tab_contents.h @@ -475,7 +475,7 @@ class TabContents : public PageNavigator, // Infobars ------------------------------------------------------------------ // Adds an InfoBar for the specified |delegate|. - virtual void AddInfoBar(InfoBarDelegate* delegate); + void AddInfoBar(InfoBarDelegate* delegate); // Removes the InfoBar for the specified |delegate|. void RemoveInfoBar(InfoBarDelegate* delegate); |