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

Side by Side Diff: Source/bindings/core/v8/ScriptStreamer.h

Issue 656113002: Refactor Script(Loader|Runner): don't access Resources all over the place... (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: . Created 6 years, 2 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
« no previous file with comments | « no previous file | Source/core/dom/PendingScript.cpp » ('j') | Source/core/dom/PendingScript.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ScriptStreamer_h 5 #ifndef ScriptStreamer_h
6 #define ScriptStreamer_h 6 #define ScriptStreamer_h
7 7
8 #include "core/dom/PendingScript.h" 8 #include "core/dom/PendingScript.h"
9 #include "wtf/RefCounted.h" 9 #include "wtf/RefCounted.h"
10 10
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 // we have the code cache for the script) and we still want to parse and 59 // we have the code cache for the script) and we still want to parse and
60 // execute it when it has finished loading. 60 // execute it when it has finished loading.
61 void suppressStreaming(); 61 void suppressStreaming();
62 bool streamingSuppressed() const { return m_streamingSuppressed; } 62 bool streamingSuppressed() const { return m_streamingSuppressed; }
63 63
64 unsigned cachedDataType() const { return m_cachedDataType; } 64 unsigned cachedDataType() const { return m_cachedDataType; }
65 65
66 void addClient(ScriptResourceClient* client) 66 void addClient(ScriptResourceClient* client)
67 { 67 {
68 ASSERT(!m_client); 68 ASSERT(!m_client);
69 ASSERT(!isFinished());
haraken 2014/10/15 15:09:41 Can we keep this ASSERT? We want to avoid a situa
marja 2014/10/16 15:19:03 No, since ScriptLoader::prepareScript calls this f
70 m_client = client; 69 m_client = client;
70 notifyFinishedToClient();
71 } 71 }
72 72
73 void removeClient(ScriptResourceClient* client) 73 void removeClient(ScriptResourceClient* client)
74 { 74 {
75 ASSERT(m_client == client); 75 ASSERT(m_client == client);
76 m_client = 0; 76 m_client = 0;
77 } 77 }
78 78
79 // Called by PendingScript when data arrives from the network. 79 // Called by PendingScript when data arrives from the network.
80 void notifyAppendData(ScriptResource*); 80 void notifyAppendData(ScriptResource*);
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 // What kind of cached data V8 produces during streaming. 128 // What kind of cached data V8 produces during streaming.
129 unsigned m_cachedDataType; 129 unsigned m_cachedDataType;
130 130
131 // For recording metrics for different types of scripts separately. 131 // For recording metrics for different types of scripts separately.
132 PendingScript::Type m_scriptType; 132 PendingScript::Type m_scriptType;
133 }; 133 };
134 134
135 } // namespace blink 135 } // namespace blink
136 136
137 #endif // ScriptStreamer_h 137 #endif // ScriptStreamer_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/PendingScript.cpp » ('j') | Source/core/dom/PendingScript.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698