| Index: chrome/browser/ui/browser_tab_contents.cc
|
| diff --git a/chrome/browser/ui/browser_tab_contents.cc b/chrome/browser/ui/browser_tab_contents.cc
|
| index c4fe56cd5e4ea575113013b91a19b303f4a7586d..fdcaa16fa2609e12afe354deaec94950d49e7186 100644
|
| --- a/chrome/browser/ui/browser_tab_contents.cc
|
| +++ b/chrome/browser/ui/browser_tab_contents.cc
|
| @@ -172,8 +172,10 @@ void BrowserTabContents::AttachTabHelpers(WebContents* web_contents) {
|
| // because the connected state may change while this tab is open. Having a
|
| // one-click signin helper attached does not cause problems if the profile
|
| // happens to be already connected.
|
| - if (OneClickSigninHelper::CanOffer(
|
| - web_contents, OneClickSigninHelper::CAN_OFFER_FOR_ALL, "", NULL)) {
|
| + if (OneClickSigninHelper::CanOffer(web_contents,
|
| + OneClickSigninHelper::CAN_OFFER_FOR_ALL,
|
| + std::string(),
|
| + NULL)) {
|
| OneClickSigninHelper::CreateForWebContents(web_contents);
|
| }
|
| #endif
|
|
|