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

Side by Side Diff: third_party/WebKit/Source/core/dom/ScriptLoaderClient.h

Issue 2723793002: De-Element ScriptLoader (Closed)
Patch Set: Address comments Created 3 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 * 19 *
20 */ 20 */
21 #ifndef ScriptLoaderClient_h 21 #ifndef ScriptLoaderClient_h
22 #define ScriptLoaderClient_h 22 #define ScriptLoaderClient_h
23 23
24 #include "core/CoreExport.h" 24 #include "core/CoreExport.h"
25 #include "platform/heap/Handle.h"
26 #include "platform/heap/Heap.h"
25 #include "wtf/text/AtomicString.h" 27 #include "wtf/text/AtomicString.h"
28 #include "wtf/text/TextPosition.h"
26 #include "wtf/text/WTFString.h" 29 #include "wtf/text/WTFString.h"
27 30
28 namespace blink { 31 namespace blink {
32 class Document;
33 class Element;
34 class HTMLScriptElementOrSVGScriptElement;
35 class ScriptLoader;
29 36
30 class CORE_EXPORT ScriptLoaderClient { 37 class CORE_EXPORT ScriptLoaderClient : public GarbageCollectedMixin {
31 public: 38 public:
32 virtual ~ScriptLoaderClient() {} 39 virtual ~ScriptLoaderClient() {}
33 40
34 virtual void dispatchLoadEvent() = 0; 41 static ScriptLoaderClient* fromElementIfPossible(Element*);
35 42
36 virtual String sourceAttributeValue() const = 0; 43 virtual void dispatchLoadEvent() {}
37 virtual String charsetAttributeValue() const = 0; 44 virtual void dispatchErrorEvent() {}
38 virtual String typeAttributeValue() const = 0; 45
39 virtual String languageAttributeValue() const = 0; 46 virtual bool asyncAttributeValue() const { return false; }
40 virtual String forAttributeValue() const = 0; 47 virtual String charsetAttributeValue() const { return String(); }
41 virtual String eventAttributeValue() const = 0; 48 virtual String crossOriginAttributeValue() const { return String(); }
42 virtual bool asyncAttributeValue() const = 0; 49 virtual bool deferAttributeValue() const { return false; }
43 virtual bool deferAttributeValue() const = 0; 50 virtual String eventAttributeValue() const { return String(); }
44 virtual bool hasSourceAttribute() const = 0; 51 virtual String forAttributeValue() const { return String(); }
52 virtual String integrityAttributeValue() const { return String(); }
53 virtual String languageAttributeValue() const { return String(); }
54 virtual String sourceAttributeValue() const { return String(); }
55 virtual String typeAttributeValue() const { return String(); }
56
57 virtual String textFromChildren() { return String(); }
58 virtual String textContent() const { return String(); }
59 virtual bool hasSourceAttribute() const { return false; }
60 virtual bool isConnected() const { return false; }
61 virtual bool hasChildren() const { return false; }
62 virtual bool isNonceableElement() const { return false; }
63 virtual AtomicString initiatorName() const { return AtomicString(); }
64
65 virtual bool allowInlineScriptForCSP(const AtomicString& nonce,
66 const WTF::OrdinalNumber&,
67 const String& scriptContent) = 0;
68 virtual Document& document() const = 0;
69 virtual void setScriptElementForBinding(
70 HTMLScriptElementOrSVGScriptElement&) {}
71
72 ScriptLoader* loader() const { return m_loader.get(); }
45 73
46 AtomicString nonce() const { return m_nonce; } 74 AtomicString nonce() const { return m_nonce; }
47 void setNonce(const String& nonce) { m_nonce = AtomicString(nonce); } 75 void setNonce(const String& nonce) { m_nonce = AtomicString(nonce); }
48 76
77 DECLARE_VIRTUAL_TRACE();
78
79 protected:
80 void initializeScriptLoader(bool parserInserted,
81 bool alreadyStarted,
82 bool createdDuringDocumentWrite);
83
84 Member<ScriptLoader> m_loader;
85
49 private: 86 private:
50 AtomicString m_nonce; 87 AtomicString m_nonce;
51 }; 88 };
52 89
53 } // namespace blink 90 } // namespace blink
54 91
55 #endif 92 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698