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

Unified Diff: third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp

Issue 1362973004: Rename FROM_HERE to BLINK_FROM_HERE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 5 years, 2 months 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/html/parser/BackgroundHTMLParser.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp b/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp
index 51b92074fab25f461c9e5f6cd474e92d1718768c..8d08984b220477899accd7d6207abfca35eaf9f4 100644
--- a/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp
+++ b/third_party/WebKit/Source/core/html/parser/BackgroundHTMLParser.cpp
@@ -158,7 +158,7 @@ void BackgroundHTMLParser::updateDocument(const String& decodedData)
m_xssAuditor->setEncoding(encodingData.encoding());
m_loadingTaskRunner->postTask(
- FROM_HERE,
+ BLINK_FROM_HERE,
threadSafeBind(&HTMLDocumentParser::didReceiveEncodingDataFromBackgroundParser, AllowCrossThreadAccess(m_parser), encodingData));
}
@@ -292,7 +292,7 @@ void BackgroundHTMLParser::sendTokensToMainThread()
m_startingScript = false;
m_loadingTaskRunner->postTask(
- FROM_HERE,
+ BLINK_FROM_HERE,
new Task(threadSafeBind(&HTMLDocumentParser::didReceiveParsedChunkFromBackgroundParser, AllowCrossThreadAccess(m_parser), chunk.release())));
m_pendingTokens = adoptPtr(new CompactHTMLTokenStream);

Powered by Google App Engine
This is Rietveld 408576698