blob: 3bc08df3a8d7475ee1961b69bdd3cc15baf7b154 (
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
71
72
73
74
75
76
77
78
79
|
// Copyright 2013 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.
// A struct for managing data being dropped on a WebContents. This represents
// a union of all the types of data that can be dropped in a platform neutral
// way.
#ifndef CONTENT_PUBLIC_COMMON_DROP_DATA_H_
#define CONTENT_PUBLIC_COMMON_DROP_DATA_H_
#include <map>
#include <string>
#include <vector>
#include "base/strings/nullable_string16.h"
#include "content/common/content_export.h"
#include "third_party/WebKit/public/platform/WebReferrerPolicy.h"
#include "ui/base/dragdrop/file_info.h"
#include "url/gurl.h"
namespace content {
struct CONTENT_EXPORT DropData {
struct FileSystemFileInfo {
FileSystemFileInfo() : size(0) {}
~FileSystemFileInfo() {}
GURL url;
int64 size;
};
DropData();
~DropData();
// Whether this drag originated from a renderer.
bool did_originate_from_renderer;
// User is dragging a link into the webview.
GURL url;
base::string16 url_title; // The title associated with |url|.
// User is dragging a link out-of the webview.
base::string16 download_metadata;
// Referrer policy to use when dragging a link out of the webview results in
// a download.
blink::WebReferrerPolicy referrer_policy;
// User is dropping one or more files on the webview. This field is only
// populated if the drag is not renderer tainted, as this allows File access
// from web content.
std::vector<ui::FileInfo> filenames;
// Isolated filesystem ID for the files being dragged on the webview.
base::string16 filesystem_id;
// User is dragging files specified with filesystem: URLs.
std::vector<FileSystemFileInfo> file_system_files;
// User is dragging plain text into the webview.
base::NullableString16 text;
// User is dragging text/html into the webview (e.g., out of Firefox).
// |html_base_url| is the URL that the html fragment is taken from (used to
// resolve relative links). It's ok for |html_base_url| to be empty.
base::NullableString16 html;
GURL html_base_url;
// User is dragging data from the webview (e.g., an image).
base::string16 file_description_filename;
std::string file_contents;
std::map<base::string16, base::string16> custom_data;
};
} // namespace content
#endif // CONTENT_PUBLIC_COMMON_DROP_DATA_H_
|