Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(449)

Unified Diff: third_party/WebKit/Source/core/clipboard/DataTransfer.cpp

Issue 2811793004: Rename EqualIgnoringCase*() to DeprecatedEqualIgnoringCase*() (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
}

Powered by Google App Engine
This is Rietveld 408576698