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

Side by Side Diff: sky/engine/core/script/dart_snapshot_loader.cc

Issue 1202283004: Factor DartLibraryProvider out of DartLoader (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 | « sky/engine/core/script/dart_snapshot_loader.h ('k') | sky/engine/core/script/dom_dart_state.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "sky/engine/core/script/dart_snapshot_loader.h"
6
7 #include "base/callback.h"
8 #include "base/trace_event/trace_event.h"
9 #include "sky/engine/platform/weborigin/KURL.h"
10 #include "sky/engine/tonic/dart_api_scope.h"
11 #include "sky/engine/tonic/dart_converter.h"
12 #include "sky/engine/tonic/dart_error.h"
13 #include "sky/engine/tonic/dart_isolate_scope.h"
14 #include "sky/engine/wtf/MainThread.h"
15
16 using mojo::common::DataPipeDrainer;
17
18 namespace blink {
19
20 DartSnapshotLoader::DartSnapshotLoader(DartState* dart_state)
21 : dart_state_(dart_state->GetWeakPtr()) {
22 }
23
24 DartSnapshotLoader::~DartSnapshotLoader() {
25 }
26
27 void DartSnapshotLoader::LoadSnapshot(const KURL& url,
28 mojo::URLResponsePtr response,
29 const base::Closure& callback) {
30 TRACE_EVENT_ASYNC_BEGIN0("sky", "DartSnapshotLoader::LoadSnapshot", this);
31 callback_ = callback;
32
33 if (!response) {
34 fetcher_ = adoptPtr(new MojoFetcher(this, url));
35 } else {
36 OnReceivedResponse(response.Pass());
37 }
38 }
39
40 void DartSnapshotLoader::OnReceivedResponse(mojo::URLResponsePtr response) {
41 if (response->status_code != 200) {
42 callback_.Run();
43 return;
44 }
45 drainer_ = adoptPtr(new DataPipeDrainer(this, response->body.Pass()));
46 }
47
48 void DartSnapshotLoader::OnDataAvailable(const void* data, size_t num_bytes) {
49 buffer_.append(static_cast<const uint8_t*>(data), num_bytes);
50 }
51
52 void DartSnapshotLoader::OnDataComplete() {
53 TRACE_EVENT_ASYNC_END0("sky", "DartSnapshotLoader::LoadSnapshot", this);
54
55 {
56 DartIsolateScope scope(dart_state_->isolate());
57 DartApiScope api_scope;
58
59 LogIfError(Dart_LoadScriptFromSnapshot(buffer_.data(), buffer_.size()));
60 }
61
62 callback_.Run();
63 }
64
65 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/script/dart_snapshot_loader.h ('k') | sky/engine/core/script/dom_dart_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698