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

Unified Diff: Source/core/html/parser/HTMLConstructionSite.cpp

Issue 656723005: Use C++11 features in core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: mike's comments Created 6 years, 1 month 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
« no previous file with comments | « Source/core/html/parser/CompactHTMLToken.cpp ('k') | Source/core/html/parser/HTMLDocumentParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/parser/HTMLConstructionSite.cpp
diff --git a/Source/core/html/parser/HTMLConstructionSite.cpp b/Source/core/html/parser/HTMLConstructionSite.cpp
index a650639fa9444a784131ea58e02cb400d0ec9756..d7512de8e3774ced9d94231a2bf87e731e59aa8f 100644
--- a/Source/core/html/parser/HTMLConstructionSite.cpp
+++ b/Source/core/html/parser/HTMLConstructionSite.cpp
@@ -94,7 +94,7 @@ static unsigned textLengthLimitForContainer(const ContainerNode& node)
static inline bool isAllWhitespace(const String& string)
{
- return string.isAllSpecialCharacters<isHTMLSpace<UChar> >();
+ return string.isAllSpecialCharacters<isHTMLSpace<UChar>>();
}
static inline void insert(HTMLConstructionSiteTask& task)
« no previous file with comments | « Source/core/html/parser/CompactHTMLToken.cpp ('k') | Source/core/html/parser/HTMLDocumentParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698