diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-05 10:35:26 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-05 10:35:26 +0000 |
commit | 95dacd08712565b8f2410e7d099bcbe610946ec3 (patch) | |
tree | 5d5fbf11568d2325f76b0d380ca763eaed7616e0 /chrome/browser/notifications | |
parent | b87a2efe6d4567afba7dd3945b390322b5870999 (diff) | |
download | chromium_src-95dacd08712565b8f2410e7d099bcbe610946ec3.zip chromium_src-95dacd08712565b8f2410e7d099bcbe610946ec3.tar.gz chromium_src-95dacd08712565b8f2410e7d099bcbe610946ec3.tar.bz2 |
Change NavigationController::LoadURL to take a Referrer class instead of a GURL as referrer
BUG=105028
TEST=no functional change
Review URL: http://codereview.chromium.org/8785004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112968 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/notifications')
-rw-r--r-- | chrome/browser/notifications/balloon_host.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/notifications/balloon_host.cc b/chrome/browser/notifications/balloon_host.cc index 095f3f9..d0ba053 100644 --- a/chrome/browser/notifications/balloon_host.cc +++ b/chrome/browser/notifications/balloon_host.cc @@ -122,7 +122,7 @@ void BalloonHost::Init() { Observe(tab_contents_.get()); tab_contents_->controller().LoadURL( - balloon_->notification().content_url(), GURL(), + balloon_->notification().content_url(), content::Referrer(), content::PAGE_TRANSITION_LINK, std::string()); initialized_ = true; |