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 68c6e2d0a2605b0311974ff2ea688e88b7db9baf..2ffe72b632cb27050fec4286cc4342278e7971e8 100644 |
--- a/third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp |
+++ b/third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp |
@@ -82,12 +82,6 @@ bool StyleSheetCandidate::isEnabledAndLoading() const |
return isHTMLLink() && !toHTMLLinkElement(node()).isDisabled() && toHTMLLinkElement(node()).styleSheetIsLoading(); |
} |
-bool StyleSheetCandidate::hasPreferrableName() const |
-{ |
- DCHECK(isEnabledAndLoading() || sheet()); |
- return !isEnabledViaScript() && !title().isEmpty() && !isAlternate(); |
-} |
- |
bool StyleSheetCandidate::canBeActivated(const String& currentPreferrableName) const |
{ |
StyleSheet* sheet = this->sheet(); |