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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp

Issue 1470323003: [DevTools] Removed support deprecated (//@|/*@) source(URL|MappingURL)= (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/inspector/InspectorStyleSheet.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp b/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
index cc8485acdc64a864d7d8342166faae7a61b7f023..32bbc4179b121a73122e4422b0724d89844d1770 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorStyleSheet.cpp
@@ -1408,10 +1408,8 @@ String InspectorStyleSheet::sourceURL()
String styleSheetText;
bool success = getText(&styleSheetText);
if (success) {
- bool deprecated;
- String commentValue = ContentSearchUtils::findSourceURL(styleSheetText, ContentSearchUtils::CSSMagicComment, &deprecated);
+ String commentValue = ContentSearchUtils::findSourceURL(styleSheetText, ContentSearchUtils::CSSMagicComment);
if (!commentValue.isEmpty()) {
- // FIXME: add deprecated console message here.
m_sourceURL = commentValue;
return commentValue;
}
@@ -1461,12 +1459,9 @@ String InspectorStyleSheet::sourceMapURL()
String styleSheetText;
bool success = getText(&styleSheetText);
if (success) {
- bool deprecated;
- String commentValue = ContentSearchUtils::findSourceMapURL(styleSheetText, ContentSearchUtils::CSSMagicComment, &deprecated);
- if (!commentValue.isEmpty()) {
- // FIXME: add deprecated console message here.
+ String commentValue = ContentSearchUtils::findSourceMapURL(styleSheetText, ContentSearchUtils::CSSMagicComment);
+ if (!commentValue.isEmpty())
return commentValue;
- }
}
return m_pageStyleSheet->contents()->sourceMapURL();
}

Powered by Google App Engine
This is Rietveld 408576698