HomeSort by relevance Sort by last modified time
    Searched defs:ScriptStreamer (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptStreamer.h 23 // ScriptStreamer streams incomplete script data to V8 so that it can be parsed
24 // while it's loaded. PendingScript holds a reference to ScriptStreamer. At the
25 // moment, ScriptStreamer is only used for parser blocking scripts; this means
28 // destroyed while the streaming is in progress, and ScriptStreamer handles it
30 class ScriptStreamer : public RefCounted<ScriptStreamer> {
31 WTF_MAKE_NONCOPYABLE(ScriptStreamer);
36 // false. Internally, this constructs a ScriptStreamer and attaches it to
37 // the PendingScript. Use ScriptStreamer::addClient to get notified when the
51 // ScriptStreamer, and ScriptStreamer takes care of eventually deletin
    [all...]
ScriptStreamer.cpp 6 #include "bindings/core/v8/ScriptStreamer.h"
90 SourceStream(ScriptStreamer* streamer)
137 // fail. ScriptStreamer::streamingComplete will be called, and at that
203 ScriptStreamer* m_streamer;
215 size_t ScriptStreamer::kSmallScriptThreshold = 30 * 1024;
217 void ScriptStreamer::startStreaming(PendingScript& script, Settings* settings, ScriptState* scriptState, PendingScript::Type scriptType)
227 void ScriptStreamer::streamingComplete()
251 void ScriptStreamer::cancel()
263 void ScriptStreamer::suppressStreaming()
270 void ScriptStreamer::notifyAppendData(ScriptResource* resource
    [all...]

Completed in 81 milliseconds