| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |