blob: 6c8e0bc0fa222a041d3778cb20cea6ce45acfcb3 (
plain)
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
|
// Copyright 2014 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/download/download_permission_request.h"
#include "chrome/grit/generated_resources.h"
#include "content/public/browser/web_contents.h"
#include "grit/theme_resources.h"
#include "ui/base/l10n/l10n_util.h"
DownloadPermissionRequest::DownloadPermissionRequest(
base::WeakPtr<DownloadRequestLimiter::TabDownloadState> host)
: host_(host) {
const content::WebContents* web_contents = host_->web_contents();
DCHECK(web_contents);
request_url_ = web_contents->GetURL();
}
DownloadPermissionRequest::~DownloadPermissionRequest() {}
int DownloadPermissionRequest::GetIconId() const {
return IDR_INFOBAR_MULTIPLE_DOWNLOADS;
}
base::string16 DownloadPermissionRequest::GetMessageText() const {
return l10n_util::GetStringUTF16(IDS_MULTI_DOWNLOAD_WARNING);
}
base::string16 DownloadPermissionRequest::GetMessageTextFragment() const {
return l10n_util::GetStringUTF16(IDS_MULTI_DOWNLOAD_PERMISSION_FRAGMENT);
}
bool DownloadPermissionRequest::HasUserGesture() const {
// TODO(felt): Right now, the user gesture is not being used so this value
// does not matter. The user gesture-related code either needs to be
// deprecated, or clients (like DownloadPermissionRequest) with their own
// user intent policies need to be able to disable/control the bubble request
// visibility & coalescing logic. See crbug.com/446607.
return false;
}
GURL DownloadPermissionRequest::GetRequestingHostname() const {
return request_url_;
}
void DownloadPermissionRequest::PermissionGranted() {
if (host_) {
// This may invalidate |host_|.
host_->Accept();
}
}
void DownloadPermissionRequest::PermissionDenied() {
if (host_) {
// This may invalidate |host_|.
host_->Cancel();
}
}
void DownloadPermissionRequest::Cancelled() {
if (host_) {
// This may invalidate |host_|.
host_->CancelOnce();
}
}
void DownloadPermissionRequest::RequestFinished() {
delete this;
}
|