Index: third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp |
diff --git a/third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp b/third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp |
index 4db3173b2d4fa1bc4e38a4342929d14ca2006936..f4e5551a159119b7d40a74ff49c61b26e91885e7 100644 |
--- a/third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp |
+++ b/third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp |
@@ -82,10 +82,10 @@ bool StyleSheetCandidate::isEnabledAndLoading() const |
return isHTMLLink() && !toHTMLLinkElement(node()).isDisabled() && toHTMLLinkElement(node()).styleSheetIsLoading(); |
} |
-bool StyleSheetCandidate::hasPreferrableName(const String& currentPreferrableName) const |
+bool StyleSheetCandidate::hasPreferrableName() const |
{ |
ASSERT(isEnabledAndLoading() || sheet()); |
- return !isEnabledViaScript() && !title().isEmpty() && !isAlternate() && currentPreferrableName.isEmpty(); |
+ return !isEnabledViaScript() && !title().isEmpty() && !isAlternate(); |
} |
bool StyleSheetCandidate::canBeActivated(const String& currentPreferrableName) const |