blob: e5572b5f7a696ebe8794d7c9b7b9f48601b0d3f0 [file] [log] [blame]
// Copyright (c) 2012 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/ui/browser_tabstrip.h"
#include "base/command_line.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/blocked_content/blocked_content_tab_helper.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_navigator.h"
#include "chrome/browser/ui/tab_contents/core_tab_helper.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/url_constants.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/web_contents.h"
namespace chrome {
void AddBlankTabAt(Browser* browser, int index, bool foreground) {
// Time new tab page creation time. We keep track of the timing data in
// WebContents, but we want to include the time it takes to create the
// WebContents object too.
base::TimeTicks new_tab_start_time = base::TimeTicks::Now();
chrome::NavigateParams params(browser, GURL(chrome::kChromeUINewTabURL),
content::PAGE_TRANSITION_TYPED);
params.disposition = foreground ? NEW_FOREGROUND_TAB : NEW_BACKGROUND_TAB;
params.tabstrip_index = index;
chrome::Navigate(&params);
CoreTabHelper* core_tab_helper =
CoreTabHelper::FromWebContents(params.target_contents);
core_tab_helper->set_new_tab_start_time(new_tab_start_time);
}
content::WebContents* AddSelectedTabWithURL(
Browser* browser,
const GURL& url,
content::PageTransition transition) {
NavigateParams params(browser, url, transition);
params.disposition = NEW_FOREGROUND_TAB;
Navigate(&params);
return params.target_contents;
}
void AddWebContents(Browser* browser,
content::WebContents* source_contents,
content::WebContents* new_contents,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
bool user_gesture,
bool* was_blocked) {
// No code for this yet.
DCHECK(disposition != SAVE_TO_DISK);
// Can't create a new contents for the current tab - invalid case.
DCHECK(disposition != CURRENT_TAB);
BlockedContentTabHelper* source_blocked_content = NULL;
if (source_contents) {
source_blocked_content =
BlockedContentTabHelper::FromWebContents(source_contents);
}
if (source_blocked_content) {
// Handle blocking of tabs.
if (source_blocked_content->all_contents_blocked()) {
source_blocked_content->AddWebContents(
new_contents, disposition, initial_pos, user_gesture);
if (was_blocked)
*was_blocked = true;
return;
}
// Handle blocking of popups.
if ((disposition == NEW_POPUP || disposition == NEW_FOREGROUND_TAB ||
disposition == NEW_BACKGROUND_TAB) && !user_gesture &&
!CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisablePopupBlocking) &&
CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableBetterPopupBlocking)) {
// Unrequested popups from normal pages are constrained unless they're in
// the white list. The popup owner will handle checking this.
source_blocked_content->AddPopup(
new_contents, disposition, initial_pos, user_gesture);
if (was_blocked)
*was_blocked = true;
return;
}
new_contents->GetRenderViewHost()->DisassociateFromPopupCount();
}
NavigateParams params(browser, new_contents);
params.source_contents = source_contents;
params.disposition = disposition;
params.window_bounds = initial_pos;
params.window_action = NavigateParams::SHOW_WINDOW;
params.user_gesture = user_gesture;
Navigate(&params);
}
void CloseWebContents(Browser* browser,
content::WebContents* contents,
bool add_to_history) {
int index = browser->tab_strip_model()->GetIndexOfWebContents(contents);
if (index == TabStripModel::kNoTab) {
NOTREACHED() << "CloseWebContents called for tab not in our strip";
return;
}
browser->tab_strip_model()->CloseWebContentsAt(
index,
add_to_history ? TabStripModel::CLOSE_CREATE_HISTORICAL_TAB
: TabStripModel::CLOSE_NONE);
}
} // namespace chrome