From 1c41af415bd13bf25db073ee898eb416ead52ef4 Mon Sep 17 00:00:00 2001 From: "ben@chromium.org" Date: Wed, 3 Dec 2008 03:06:37 +0000 Subject: Tear out all the old infobar code. http://crbug.com/4620 Review URL: http://codereview.chromium.org/13077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6273 0039d316-1c4b-4281-b951-d872f2087c98 --- .../views/info_bar_alternate_nav_url_view.cc | 70 ---------------------- 1 file changed, 70 deletions(-) delete mode 100644 chrome/browser/views/info_bar_alternate_nav_url_view.cc (limited to 'chrome/browser/views/info_bar_alternate_nav_url_view.cc') diff --git a/chrome/browser/views/info_bar_alternate_nav_url_view.cc b/chrome/browser/views/info_bar_alternate_nav_url_view.cc deleted file mode 100644 index 2eaa9e02..0000000 --- a/chrome/browser/views/info_bar_alternate_nav_url_view.cc +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "chrome/browser/views/info_bar_alternate_nav_url_view.h" - -#include "chrome/app/theme/theme_resources.h" -#include "chrome/browser/web_contents.h" -#include "chrome/browser/views/event_utils.h" -#include "chrome/browser/views/info_bar_view.h" -#include "chrome/browser/views/standard_layout.h" -#include "chrome/common/l10n_util.h" -#include "chrome/common/page_transition_types.h" -#include "chrome/common/resource_bundle.h" -#include "chrome/views/label.h" - -#include "generated_resources.h" - -InfoBarAlternateNavURLView::InfoBarAlternateNavURLView( - const std::wstring& alternate_nav_url) - : alternate_nav_url_(alternate_nav_url) { - size_t offset; - const std::wstring label(l10n_util::GetStringF( - IDS_ALTERNATE_NAV_URL_VIEW_LABEL, std::wstring(), &offset)); - DCHECK(offset != std::wstring::npos); - - ResourceBundle& rb = ResourceBundle::GetSharedInstance(); - if (offset > 0) { - views::Label* label_1 = new views::Label(label.substr(0, offset)); - label_1->SetFont(rb.GetFont(ResourceBundle::MediumFont)); - AddChildViewLeading(label_1, 0); - } - - views::Link* link = new views::Link(alternate_nav_url_); - link->SetFont(rb.GetFont(ResourceBundle::MediumFont)); - link->SetController(this); - AddChildViewLeading(link, 0); - - if (offset < label.length()) { - views::Label* label_2 = new views::Label(label.substr(offset)); - label_2->SetFont(rb.GetFont(ResourceBundle::MediumFont)); - AddChildViewLeading(label_2, 0); - } - - SetIcon(*rb.GetBitmapNamed(IDR_INFOBAR_ALT_NAV_URL)); -} - -void InfoBarAlternateNavURLView::LinkActivated(views::Link* source, - int event_flags) { - // Navigating may or may not automatically close the infobar, depending on - // whether the desired disposition replaces the current tab. We always want - // the bar to close, so we close it ourselves before navigating (doing things - // in the other order would be problematic if navigation synchronously closed - // the bar, as on return from the call, |this| would not exist, and calling - // Close() would corrupt memory). This means we need to save off all members - // we need before calling Close(), which destroys us. - PageNavigator* const navigator = - static_cast(GetParent())->web_contents(); - const GURL gurl(alternate_nav_url_); - - BeginClose(); - - navigator->OpenURL(gurl, GURL(), - event_utils::DispositionFromEventFlags(event_flags), - // Pretend the user typed this URL, so that navigating to - // it will be the default action when it's typed again in - // the future. - PageTransition::TYPED); -} - -- cgit v1.1