| 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 11 matching lines...) Expand all Loading... |
| 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 #ifndef ScriptableDocumentParser_h | 26 #ifndef ScriptableDocumentParser_h |
| 27 #define ScriptableDocumentParser_h | 27 #define ScriptableDocumentParser_h |
| 28 | 28 |
| 29 #include "core/CoreExport.h" | 29 #include "core/CoreExport.h" |
| 30 #include "core/dom/DecodedDataDocumentParser.h" | 30 #include "core/dom/DecodedDataDocumentParser.h" |
| 31 #include "core/dom/ParserContentPolicy.h" | 31 #include "core/dom/ParserContentPolicy.h" |
| 32 #include "wtf/text/TextPosition.h" | 32 #include "platform/wtf/text/TextPosition.h" |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 class CORE_EXPORT ScriptableDocumentParser : public DecodedDataDocumentParser { | 36 class CORE_EXPORT ScriptableDocumentParser : public DecodedDataDocumentParser { |
| 37 public: | 37 public: |
| 38 // Only used by Document::open for deciding if its safe to act on a | 38 // Only used by Document::open for deciding if its safe to act on a |
| 39 // JavaScript document.open() call right now, or it should be ignored. | 39 // JavaScript document.open() call right now, or it should be ignored. |
| 40 virtual bool IsExecutingScript() const { return false; } | 40 virtual bool IsExecutingScript() const { return false; } |
| 41 | 41 |
| 42 // FIXME: Only the HTMLDocumentParser ever blocks script execution on | 42 // FIXME: Only the HTMLDocumentParser ever blocks script execution on |
| (...skipping 27 matching lines...) Expand all Loading... |
| 70 ScriptableDocumentParser* AsScriptableDocumentParser() final { return this; } | 70 ScriptableDocumentParser* AsScriptableDocumentParser() final { return this; } |
| 71 | 71 |
| 72 // http://www.whatwg.org/specs/web-apps/current-work/#script-created-parser | 72 // http://www.whatwg.org/specs/web-apps/current-work/#script-created-parser |
| 73 bool was_created_by_script_; | 73 bool was_created_by_script_; |
| 74 ParserContentPolicy parser_content_policy_; | 74 ParserContentPolicy parser_content_policy_; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace blink | 77 } // namespace blink |
| 78 | 78 |
| 79 #endif // ScriptableDocumentParser_h | 79 #endif // ScriptableDocumentParser_h |
| OLD | NEW |