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

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

Issue 2723793002: De-Element ScriptLoader (Closed)
Patch Set: ScriptLoaderClient->ScriptElementBase, pure virtual interface, add fixme 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 ScriptElementBase_h
22 #define ScriptLoaderClient_h 22 #define ScriptElementBase_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 ScriptElementBase : public GarbageCollectedMixin {
31 public: 38 public:
32 virtual ~ScriptLoaderClient() {} 39 virtual ~ScriptElementBase() {}
40
41 static ScriptElementBase* fromElementIfPossible(Element*);
33 42
34 virtual void dispatchLoadEvent() = 0; 43 virtual void dispatchLoadEvent() = 0;
44 virtual void dispatchErrorEvent() = 0;
35 45
46 virtual bool asyncAttributeValue() const = 0;
47 virtual String charsetAttributeValue() const = 0;
48 virtual String crossOriginAttributeValue() const = 0;
49 virtual bool deferAttributeValue() const = 0;
50 virtual String eventAttributeValue() const = 0;
51 virtual String forAttributeValue() const = 0;
52 virtual String integrityAttributeValue() const = 0;
53 virtual String languageAttributeValue() const = 0;
36 virtual String sourceAttributeValue() const = 0; 54 virtual String sourceAttributeValue() const = 0;
37 virtual String charsetAttributeValue() const = 0;
38 virtual String typeAttributeValue() const = 0; 55 virtual String typeAttributeValue() const = 0;
39 virtual String languageAttributeValue() const = 0; 56
40 virtual String forAttributeValue() const = 0; 57 virtual String textFromChildren() = 0;
41 virtual String eventAttributeValue() const = 0; 58 virtual String textContent() const = 0;
42 virtual bool asyncAttributeValue() const = 0;
43 virtual bool deferAttributeValue() const = 0;
44 virtual bool hasSourceAttribute() const = 0; 59 virtual bool hasSourceAttribute() const = 0;
60 virtual bool isConnected() const = 0;
61 virtual bool hasChildren() const = 0;
62 virtual bool isNonceableElement() const = 0;
63 virtual AtomicString initiatorName() const = 0;
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&) = 0;
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
« no previous file with comments | « third_party/WebKit/Source/core/dom/PendingScript.cpp ('k') | third_party/WebKit/Source/core/dom/ScriptElementBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698