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

Side by Side Diff: Source/core/html/parser/HTMLDocumentParser.h

Issue 15856002: First step of HTMLImports (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Mac build Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/LinkResource.cpp ('k') | Source/core/html/parser/HTMLDocumentParser.cpp » ('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) 2010 Google, Inc. All Rights Reserved. 2 * Copyright (C) 2010 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 117
118 // DocumentParser 118 // DocumentParser
119 virtual void pinToMainThread() OVERRIDE; 119 virtual void pinToMainThread() OVERRIDE;
120 virtual void detach() OVERRIDE; 120 virtual void detach() OVERRIDE;
121 virtual bool hasInsertionPoint() OVERRIDE; 121 virtual bool hasInsertionPoint() OVERRIDE;
122 virtual bool processingData() const OVERRIDE; 122 virtual bool processingData() const OVERRIDE;
123 virtual void prepareToStopParsing() OVERRIDE; 123 virtual void prepareToStopParsing() OVERRIDE;
124 virtual void stopParsing() OVERRIDE; 124 virtual void stopParsing() OVERRIDE;
125 virtual bool isWaitingForScripts() const OVERRIDE; 125 virtual bool isWaitingForScripts() const OVERRIDE;
126 virtual bool isExecutingScript() const OVERRIDE; 126 virtual bool isExecutingScript() const OVERRIDE;
127 virtual void executeScriptsWaitingForStylesheets() OVERRIDE; 127 virtual void executeScriptsWaitingForResources() OVERRIDE;
128 128
129 // HTMLScriptRunnerHost 129 // HTMLScriptRunnerHost
130 virtual void watchForLoad(CachedResource*) OVERRIDE; 130 virtual void watchForLoad(CachedResource*) OVERRIDE;
131 virtual void stopWatchingForLoad(CachedResource*) OVERRIDE; 131 virtual void stopWatchingForLoad(CachedResource*) OVERRIDE;
132 virtual HTMLInputStream& inputStream() { return m_input; } 132 virtual HTMLInputStream& inputStream() { return m_input; }
133 virtual bool hasPreloadScanner() const { return m_preloadScanner.get() && !s houldUseThreading(); } 133 virtual bool hasPreloadScanner() const { return m_preloadScanner.get() && !s houldUseThreading(); }
134 virtual void appendCurrentInputStreamToPreloadScannerAndScan() OVERRIDE; 134 virtual void appendCurrentInputStreamToPreloadScannerAndScan() OVERRIDE;
135 135
136 // CachedResourceClient 136 // CachedResourceClient
137 virtual void notifyFinished(CachedResource*); 137 virtual void notifyFinished(CachedResource*);
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 197
198 bool m_isPinnedToMainThread; 198 bool m_isPinnedToMainThread;
199 bool m_endWasDelayed; 199 bool m_endWasDelayed;
200 bool m_haveBackgroundParser; 200 bool m_haveBackgroundParser;
201 unsigned m_pumpSessionNestingLevel; 201 unsigned m_pumpSessionNestingLevel;
202 }; 202 };
203 203
204 } 204 }
205 205
206 #endif 206 #endif
OLDNEW
« no previous file with comments | « Source/core/html/LinkResource.cpp ('k') | Source/core/html/parser/HTMLDocumentParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698