Index: Source/core/html/parser/HTMLEntityParser.h |
diff --git a/Source/core/html/parser/HTMLEntityParser.h b/Source/core/html/parser/HTMLEntityParser.h |
index b9cac251c3c2650c15670c9416eddb3773f47b8a..4479c23639d64e2ed7443603142fd55b42276fec 100644 |
--- a/Source/core/html/parser/HTMLEntityParser.h |
+++ b/Source/core/html/parser/HTMLEntityParser.h |
@@ -27,7 +27,6 @@ |
#ifndef HTMLEntityParser_h |
#define HTMLEntityParser_h |
-#include "core/CoreExport.h" |
#include "platform/text/SegmentedString.h" |
#include "wtf/Allocator.h" |
@@ -64,11 +63,11 @@ |
UChar data[kMaxLength]; |
}; |
-CORE_EXPORT bool consumeHTMLEntity(SegmentedString&, DecodedHTMLEntity& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter = '\0'); |
+bool consumeHTMLEntity(SegmentedString&, DecodedHTMLEntity& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter = '\0'); |
// Used by the XML parser. Not suitable for use in HTML parsing. Use consumeHTMLEntity instead. |
size_t decodeNamedEntityToUCharArray(const char*, UChar result[4]); |
-} // namespace blink |
+} |
#endif |