| OLD | NEW | 
|---|
| 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 17 matching lines...) Expand all  Loading... | 
| 28 | 28 | 
| 29 #include "core/html/parser/BackgroundHTMLInputStream.h" | 29 #include "core/html/parser/BackgroundHTMLInputStream.h" | 
| 30 #include "core/html/parser/CompactHTMLToken.h" | 30 #include "core/html/parser/CompactHTMLToken.h" | 
| 31 #include "core/html/parser/HTMLParserOptions.h" | 31 #include "core/html/parser/HTMLParserOptions.h" | 
| 32 #include "core/html/parser/HTMLPreloadScanner.h" | 32 #include "core/html/parser/HTMLPreloadScanner.h" | 
| 33 #include "core/html/parser/HTMLSourceTracker.h" | 33 #include "core/html/parser/HTMLSourceTracker.h" | 
| 34 #include "core/html/parser/HTMLToken.h" | 34 #include "core/html/parser/HTMLToken.h" | 
| 35 #include "core/html/parser/HTMLTokenizer.h" | 35 #include "core/html/parser/HTMLTokenizer.h" | 
| 36 #include "core/html/parser/HTMLTreeBuilderSimulator.h" | 36 #include "core/html/parser/HTMLTreeBuilderSimulator.h" | 
| 37 #include "core/html/parser/XSSAuditorDelegate.h" | 37 #include "core/html/parser/XSSAuditorDelegate.h" | 
| 38 #include <wtf/PassOwnPtr.h> | 38 #include "wtf/PassOwnPtr.h" | 
| 39 #include <wtf/RefPtr.h> | 39 #include "wtf/WeakPtr.h" | 
| 40 #include <wtf/Vector.h> |  | 
| 41 #include <wtf/WeakPtr.h> |  | 
| 42 | 40 | 
| 43 namespace WebCore { | 41 namespace WebCore { | 
| 44 | 42 | 
| 45 class HTMLDocumentParser; | 43 class HTMLDocumentParser; | 
| 46 class XSSAuditor; | 44 class XSSAuditor; | 
| 47 | 45 | 
| 48 class BackgroundHTMLParser { | 46 class BackgroundHTMLParser { | 
| 49     WTF_MAKE_FAST_ALLOCATED; | 47     WTF_MAKE_FAST_ALLOCATED; | 
| 50 public: | 48 public: | 
| 51     struct Configuration { | 49     struct Configuration { | 
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 99     PreloadRequestStream m_pendingPreloads; | 97     PreloadRequestStream m_pendingPreloads; | 
| 100     XSSInfoStream m_pendingXSSInfos; | 98     XSSInfoStream m_pendingXSSInfos; | 
| 101 | 99 | 
| 102     OwnPtr<XSSAuditor> m_xssAuditor; | 100     OwnPtr<XSSAuditor> m_xssAuditor; | 
| 103     OwnPtr<TokenPreloadScanner> m_preloadScanner; | 101     OwnPtr<TokenPreloadScanner> m_preloadScanner; | 
| 104 }; | 102 }; | 
| 105 | 103 | 
| 106 } | 104 } | 
| 107 | 105 | 
| 108 #endif | 106 #endif | 
| OLD | NEW | 
|---|