summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webdropdata.h
blob: 38d67b479ba3ce49bfaf853c7f6a9967d3248ab6 (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
// 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.
//
// A struct for managing data being dropped on a webview.  This represents a
// union of all the types of data that can be dropped in a platform neutral
// way.

#ifndef WEBKIT_GLUE_WEBDROPDATA_H_
#define WEBKIT_GLUE_WEBDROPDATA_H_

#include <string>
#include <vector>
#include "googleurl/src/gurl.h"

struct IDataObject;

struct WebDropData {
  // User is dropping a link on the webview.
  GURL url;
  std::wstring url_title;  // The title associated with |url|.

  // User is dropping one or more files on the webview.
  std::vector<std::wstring> filenames;

  // User is dragging plain text into the webview.
  std::wstring plain_text;

  // User is dragging MS HTML into the webview (e.g., out of IE).
  // TODO(tc): We should remove this from webdropdata because not all platforms
  // have cf_html. On the browser side, we should do the necessary conversions
  // so we still support cf_html.
  std::wstring cf_html;

  // User is dragging text/html into the webview (e.g., out of Firefox).
  std::wstring text_html;

  // User is dragging data from the webview (e.g., an image).
  std::wstring file_description_filename;
  std::string file_contents;

  // Helper method for converting Window's specific IDataObject to a WebDropData
  // object.  TODO(tc): Move this to the browser side since it's Windows
  // specific and no longer used in webkit.
  static void PopulateWebDropData(IDataObject* data_object,
                                  WebDropData* drop_data);
};

#endif  // WEBKIT_GLUE_WEBDROPDATA_H_