OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "webkit/common/webdropdata.h" | 5 #include "webkit/common/webdropdata.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "base/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
12 #include "third_party/WebKit/public/platform/WebData.h" | 12 #include "third_party/WebKit/public/platform/WebData.h" |
13 #include "third_party/WebKit/public/platform/WebDragData.h" | 13 #include "third_party/WebKit/public/platform/WebDragData.h" |
14 #include "third_party/WebKit/public/platform/WebString.h" | 14 #include "third_party/WebKit/public/platform/WebString.h" |
15 #include "third_party/WebKit/public/platform/WebURL.h" | 15 #include "third_party/WebKit/public/platform/WebURL.h" |
16 #include "third_party/WebKit/public/platform/WebVector.h" | 16 #include "third_party/WebKit/public/platform/WebVector.h" |
17 #include "ui/base/clipboard/clipboard.h" | 17 #include "ui/base/clipboard/clipboard.h" |
18 | 18 |
19 using WebKit::WebData; | 19 using WebKit::WebData; |
20 using WebKit::WebDragData; | 20 using WebKit::WebDragData; |
21 using WebKit::WebString; | 21 using WebKit::WebString; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 } | 75 } |
76 | 76 |
77 WebDropData::WebDropData() | 77 WebDropData::WebDropData() |
78 : referrer_policy(WebKit::WebReferrerPolicyDefault), | 78 : referrer_policy(WebKit::WebReferrerPolicyDefault), |
79 text(NullableString16(true)), | 79 text(NullableString16(true)), |
80 html(NullableString16(true)) { | 80 html(NullableString16(true)) { |
81 } | 81 } |
82 | 82 |
83 WebDropData::~WebDropData() { | 83 WebDropData::~WebDropData() { |
84 } | 84 } |
OLD | NEW |