Index: third_party/WebKit/Source/core/clipboard/DataTransfer.cpp |
diff --git a/third_party/WebKit/Source/core/clipboard/DataTransfer.cpp b/third_party/WebKit/Source/core/clipboard/DataTransfer.cpp |
index f4e1d0b1814927f20d0add569900486627967c04..558c0b7ee6f874bd345fec658ec8599751ac7aba 100644 |
--- a/third_party/WebKit/Source/core/clipboard/DataTransfer.cpp |
+++ b/third_party/WebKit/Source/core/clipboard/DataTransfer.cpp |
@@ -449,7 +449,8 @@ bool DataTransfer::HasFileOfType(const String& type) const { |
for (size_t i = 0; i < data_object_->length(); ++i) { |
if (data_object_->Item(i)->Kind() == DataObjectItem::kFileKind) { |
Blob* blob = data_object_->Item(i)->GetAsFile(); |
- if (blob && blob->IsFile() && EqualIgnoringCase(blob->type(), type)) |
+ if (blob && blob->IsFile() && |
+ DeprecatedEqualIgnoringCase(blob->type(), type)) |
return true; |
} |
} |