This source file includes following definitions.
- Create
- search_url_
- GetMessageTextWithOffset
- GetLinkText
- LinkClicked
- GetIconID
- GetInfoBarType
#include "chrome/browser/ui/omnibox/alternate_nav_infobar_delegate.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/autocomplete/shortcuts_backend.h"
#include "chrome/browser/autocomplete/shortcuts_backend_factory.h"
#include "chrome/browser/history/history_service.h"
#include "chrome/browser/history/history_service_factory.h"
#include "chrome/browser/infobars/infobar.h"
#include "chrome/browser/infobars/infobar_service.h"
#include "chrome/browser/profiles/profile.h"
#include "content/public/browser/web_contents.h"
#include "grit/generated_resources.h"
#include "grit/theme_resources.h"
#include "ui/base/l10n/l10n_util.h"
AlternateNavInfoBarDelegate::~AlternateNavInfoBarDelegate() {
}
void AlternateNavInfoBarDelegate::Create(
content::WebContents* web_contents,
const base::string16& text,
const AutocompleteMatch& match,
const GURL& search_url) {
InfoBarService* infobar_service =
InfoBarService::FromWebContents(web_contents);
infobar_service->AddInfoBar(AlternateNavInfoBarDelegate::CreateInfoBar(
scoped_ptr<AlternateNavInfoBarDelegate>(new AlternateNavInfoBarDelegate(
Profile::FromBrowserContext(web_contents->GetBrowserContext()), text,
match, search_url))));
}
AlternateNavInfoBarDelegate::AlternateNavInfoBarDelegate(
Profile* profile,
const base::string16& text,
const AutocompleteMatch& match,
const GURL& search_url)
: InfoBarDelegate(),
profile_(profile),
text_(text),
match_(match),
search_url_(search_url) {
DCHECK(match_.destination_url.is_valid());
DCHECK(search_url_.is_valid());
}
base::string16 AlternateNavInfoBarDelegate::GetMessageTextWithOffset(
size_t* link_offset) const {
const base::string16 label = l10n_util::GetStringFUTF16(
IDS_ALTERNATE_NAV_URL_VIEW_LABEL, base::string16(), link_offset);
return label;
}
base::string16 AlternateNavInfoBarDelegate::GetLinkText() const {
return base::UTF8ToUTF16(match_.destination_url.spec());
}
bool AlternateNavInfoBarDelegate::LinkClicked(
WindowOpenDisposition disposition) {
scoped_refptr<ShortcutsBackend> shortcuts_backend(
ShortcutsBackendFactory::GetForProfile(profile_));
if (shortcuts_backend) {
shortcuts_backend->DeleteShortcutsWithURL(search_url_);
shortcuts_backend->AddOrUpdateShortcut(text_, match_);
}
HistoryService* const history_service =
HistoryServiceFactory::GetForProfile(profile_, Profile::IMPLICIT_ACCESS);
if (history_service)
history_service->DeleteKeywordSearchTermForURL(search_url_);
web_contents()->OpenURL(content::OpenURLParams(
match_.destination_url, content::Referrer(), disposition,
content::PAGE_TRANSITION_TYPED, false));
return true;
}
int AlternateNavInfoBarDelegate::GetIconID() const {
return IDR_INFOBAR_ALT_NAV_URL;
}
InfoBarDelegate::Type AlternateNavInfoBarDelegate::GetInfoBarType() const {
return PAGE_ACTION_TYPE;
}