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 "content/renderer/drop_data_builder.h" | 5 #include "content/renderer/drop_data_builder.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
8 #include "content/public/common/drop_data.h" | 10 #include "content/public/common/drop_data.h" |
9 #include "third_party/WebKit/public/platform/WebDragData.h" | 11 #include "third_party/WebKit/public/platform/WebDragData.h" |
10 #include "third_party/WebKit/public/platform/WebString.h" | 12 #include "third_party/WebKit/public/platform/WebString.h" |
11 #include "third_party/WebKit/public/platform/WebVector.h" | 13 #include "third_party/WebKit/public/platform/WebVector.h" |
12 #include "ui/base/clipboard/clipboard.h" | 14 #include "ui/base/clipboard/clipboard.h" |
13 | 15 |
14 using blink::WebDragData; | 16 using blink::WebDragData; |
15 using blink::WebVector; | 17 using blink::WebVector; |
16 | 18 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 result.file_system_files.push_back(info); | 69 result.file_system_files.push_back(info); |
68 break; | 70 break; |
69 } | 71 } |
70 } | 72 } |
71 } | 73 } |
72 | 74 |
73 return result; | 75 return result; |
74 } | 76 } |
75 | 77 |
76 } // namespace content | 78 } // namespace content |
OLD | NEW |