1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
// Copyright (c) 2011 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/webui/html_dialog_tab_contents_delegate.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/tabs/tab_strip_model.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_navigator.h"
#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
#include "content/browser/tab_contents/tab_contents.h"
// Incognito profiles are not long-lived, so we always want to store a
// non-incognito profile.
//
// TODO(akalin): Should we make it so that we have a default incognito
// profile that's long-lived? Of course, we'd still have to clear it out
// when all incognito browsers close.
HtmlDialogTabContentsDelegate::HtmlDialogTabContentsDelegate(Profile* profile)
: profile_(profile->GetOriginalProfile()) {}
HtmlDialogTabContentsDelegate::~HtmlDialogTabContentsDelegate() {}
Profile* HtmlDialogTabContentsDelegate::profile() const { return profile_; }
void HtmlDialogTabContentsDelegate::Detach() {
profile_ = NULL;
}
// TODO(adriansc): Remove this method once refactoring changed all call sites.
TabContents* HtmlDialogTabContentsDelegate::OpenURLFromTab(
TabContents* source, const GURL& url, const GURL& referrer,
WindowOpenDisposition disposition, PageTransition::Type transition) {
return OpenURLFromTab(source,
OpenURLParams(url, referrer, disposition, transition));
}
TabContents* HtmlDialogTabContentsDelegate::OpenURLFromTab(
TabContents* source, const OpenURLParams& params) {
if (profile_) {
// Specify a NULL browser for navigation. This will cause Navigate()
// to find a browser matching params.profile or create a new one.
Browser* browser = NULL;
browser::NavigateParams nav_params(browser, params.url, params.transition);
nav_params.profile = profile_;
nav_params.referrer = params.referrer;
if (source && source->is_crashed() &&
params.disposition == CURRENT_TAB &&
params.transition == PageTransition::LINK)
nav_params.disposition = NEW_FOREGROUND_TAB;
else
nav_params.disposition = params.disposition;
nav_params.window_action = browser::NavigateParams::SHOW_WINDOW;
nav_params.user_gesture = true;
browser::Navigate(&nav_params);
return nav_params.target_contents ?
nav_params.target_contents->tab_contents() : NULL;
}
return NULL;
}
void HtmlDialogTabContentsDelegate::AddNewContents(
TabContents* source, TabContents* new_contents,
WindowOpenDisposition disposition, const gfx::Rect& initial_pos,
bool user_gesture) {
if (profile_) {
// Specify a NULL browser for navigation. This will cause Navigate()
// to find a browser matching params.profile or create a new one.
Browser* browser = NULL;
TabContentsWrapper* wrapper = new TabContentsWrapper(new_contents);
browser::NavigateParams params(browser, wrapper);
params.profile = profile_;
// TODO(pinkerton): no way to get a wrapper for this.
// params.source_contents = source;
params.disposition = disposition;
params.window_bounds = initial_pos;
params.window_action = browser::NavigateParams::SHOW_WINDOW;
params.user_gesture = true;
browser::Navigate(¶ms);
}
}
bool HtmlDialogTabContentsDelegate::IsPopup(const TabContents* source) const {
// This needs to return true so that we are allowed to be resized by our
// contents.
return true;
}
bool HtmlDialogTabContentsDelegate::ShouldAddNavigationToHistory(
const history::HistoryAddPageArgs& add_page_args,
NavigationType::Type navigation_type) {
return false;
}
|