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

Side by Side Diff: Source/core/html/parser/BackgroundHTMLParser.cpp

Issue 876623002: Adds a CancellableTaskFactory and exposes postLoadingTasks to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 10 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 unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/html/parser/HTMLParserScheduler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google, Inc. All Rights Reserved. 2 * Copyright (C) 2013 Google, Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "core/html/parser/BackgroundHTMLParser.h" 27 #include "core/html/parser/BackgroundHTMLParser.h"
28 28
29 #include "core/html/parser/HTMLDocumentParser.h" 29 #include "core/html/parser/HTMLDocumentParser.h"
30 #include "core/html/parser/TextResourceDecoder.h" 30 #include "core/html/parser/TextResourceDecoder.h"
31 #include "core/html/parser/XSSAuditor.h" 31 #include "core/html/parser/XSSAuditor.h"
32 #include "platform/scheduler/ClosureRunnerTask.h"
33 #include "platform/scheduler/Scheduler.h"
32 #include "wtf/MainThread.h" 34 #include "wtf/MainThread.h"
33 #include "wtf/text/TextPosition.h" 35 #include "wtf/text/TextPosition.h"
34 36
35 namespace blink { 37 namespace blink {
36 38
37 // On a network with high latency and high bandwidth, using a device 39 // On a network with high latency and high bandwidth, using a device
38 // with a fast CPU, we could end up speculatively tokenizing 40 // with a fast CPU, we could end up speculatively tokenizing
39 // the whole document, well ahead of when the main-thread actually needs it. 41 // the whole document, well ahead of when the main-thread actually needs it.
40 // This is a waste of memory (and potentially time if the speculation fails). 42 // This is a waste of memory (and potentially time if the speculation fails).
41 // So we limit our outstanding tokens arbitrarily to 10,000. 43 // So we limit our outstanding tokens arbitrarily to 10,000.
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 OwnPtr<HTMLDocumentParser::ParsedChunk> chunk = adoptPtr(new HTMLDocumentPar ser::ParsedChunk); 262 OwnPtr<HTMLDocumentParser::ParsedChunk> chunk = adoptPtr(new HTMLDocumentPar ser::ParsedChunk);
261 chunk->preloads.swap(m_pendingPreloads); 263 chunk->preloads.swap(m_pendingPreloads);
262 chunk->xssInfos.swap(m_pendingXSSInfos); 264 chunk->xssInfos.swap(m_pendingXSSInfos);
263 chunk->tokenizerState = m_tokenizer->state(); 265 chunk->tokenizerState = m_tokenizer->state();
264 chunk->treeBuilderState = m_treeBuilderSimulator.state(); 266 chunk->treeBuilderState = m_treeBuilderSimulator.state();
265 chunk->inputCheckpoint = m_input.createCheckpoint(m_pendingTokens->size()); 267 chunk->inputCheckpoint = m_input.createCheckpoint(m_pendingTokens->size());
266 chunk->preloadScannerCheckpoint = m_preloadScanner->createCheckpoint(); 268 chunk->preloadScannerCheckpoint = m_preloadScanner->createCheckpoint();
267 chunk->tokens = m_pendingTokens.release(); 269 chunk->tokens = m_pendingTokens.release();
268 chunk->startingScript = m_startingScript; 270 chunk->startingScript = m_startingScript;
269 m_startingScript = false; 271 m_startingScript = false;
270 callOnMainThread(bind(&HTMLDocumentParser::didReceiveParsedChunkFromBackgrou ndParser, m_parser, chunk.release())); 272
273 Scheduler::shared()->postLoadingTask(
274 FROM_HERE,
275 new ClosureRunnerTask(bind(&HTMLDocumentParser::didReceiveParsedChunkFro mBackgroundParser, m_parser, chunk.release())));
271 276
272 m_pendingTokens = adoptPtr(new CompactHTMLTokenStream); 277 m_pendingTokens = adoptPtr(new CompactHTMLTokenStream);
273 } 278 }
274 279
275 } 280 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/html/parser/HTMLParserScheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698