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

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

Issue 2723793002: De-Element ScriptLoader (Closed)
Patch Set: De-Element ScriptLoader 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 {
Nate Chapin 2017/02/28 21:39:29 I'm not thrilled with how large this interface end
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 String sourceAttributeValue() const { return String(); }
Nate Chapin 2017/02/28 21:39:29 I don't know how good/bad it is to have the defaul
hiroshige 2017/03/01 00:58:14 I think making these all methods all abstract is b
Nate Chapin 2017/03/01 21:34:59 I had been thinking that there are some methods wh
hiroshige 2017/03/06 22:54:03 I think it's better to make these abstract, becaus
kouhei (in TOK) 2017/03/15 03:31:40 +1 on making this abstract
Nate Chapin 2017/03/16 20:15:09 Done.
40 virtual String forAttributeValue() const = 0; 47 virtual String charsetAttributeValue() const { return String(); }
41 virtual String eventAttributeValue() const = 0; 48 virtual String typeAttributeValue() const { return String(); }
hiroshige 2017/03/01 00:58:14 Can we split these methods into subgroups for read
Nate Chapin 2017/03/01 21:34:59 Done.
42 virtual bool asyncAttributeValue() const = 0; 49 virtual String languageAttributeValue() const { return String(); }
43 virtual bool deferAttributeValue() const = 0; 50 virtual String forAttributeValue() const { return String(); }
44 virtual bool hasSourceAttribute() const = 0; 51 virtual String eventAttributeValue() const { return String(); }
52 virtual String crossOriginAttributeValue() const { return String(); }
53 virtual String integrityAttributeValue() const { return String(); }
54 virtual String textFromChildren() { return String(); }
55 virtual String textContent() const { return String(); }
56 virtual bool asyncAttributeValue() const { return false; }
57 virtual bool deferAttributeValue() const { return false; }
58 virtual bool hasSourceAttribute() const { return false; }
59 virtual bool isConnected() const { return false; }
60 virtual bool hasChildren() const { return false; }
61 virtual bool isNonceableElement() const { return false; }
62 virtual bool allowInlineScriptForCSP(const AtomicString& nonce,
hiroshige 2017/03/01 00:58:14 nit: Can this be a const method?
Nate Chapin 2017/03/01 21:34:59 It calls a CSP function that takes a non-const Ele
hiroshige 2017/03/06 22:54:03 Oh, I see. (and I've just found the ContentSecurit
63 const WTF::OrdinalNumber&,
64 const String& scriptContent) = 0;
65 virtual AtomicString initiatorName() const { return AtomicString(); }
66 virtual Document& document() const = 0;
67 virtual void setScriptElementForBinding(
68 HTMLScriptElementOrSVGScriptElement&) {}
69
70 ScriptLoader* loader() const { return m_loader.get(); }
45 71
46 AtomicString nonce() const { return m_nonce; } 72 AtomicString nonce() const { return m_nonce; }
47 void setNonce(const String& nonce) { m_nonce = AtomicString(nonce); } 73 void setNonce(const String& nonce) { m_nonce = AtomicString(nonce); }
48 74
75 DECLARE_VIRTUAL_TRACE();
76
77 protected:
78 void initializeScriptLoader(bool parserInserted,
79 bool alreadyStarted,
80 bool createdDuringDocumentWrite);
81
82 Member<ScriptLoader> m_loader;
83
49 private: 84 private:
50 AtomicString m_nonce; 85 AtomicString m_nonce;
51 }; 86 };
52 87
53 } // namespace blink 88 } // namespace blink
54 89
55 #endif 90 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698