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

Unified Diff: sky/engine/core/script/dom_dart_state.cc

Issue 921903002: Add DartController and friends (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: More comment Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/core/script/dom_dart_state.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/script/dom_dart_state.cc
diff --git a/sky/engine/core/script/dom_dart_state.cc b/sky/engine/core/script/dom_dart_state.cc
new file mode 100644
index 0000000000000000000000000000000000000000..dfc7a5c84bbe5c597e06309c00142e209f79a1e6
--- /dev/null
+++ b/sky/engine/core/script/dom_dart_state.cc
@@ -0,0 +1,37 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "sky/engine/config.h"
+#include "sky/engine/core/script/dom_dart_state.h"
+
+#include "sky/engine/core/dom/Document.h"
+#include "sky/engine/core/script/dart_loader.h"
+
+namespace blink {
+
+DOMDartState::DOMDartState(Document* document)
+ : document_(document), loader_(adoptPtr(new DartLoader(this))) {
+ DCHECK(document_);
+}
+
+DOMDartState::~DOMDartState() {
+}
+
+DOMDartState* DOMDartState::Current() {
+ return static_cast<DOMDartState*>(DartState::Current());
+}
+
+Document* DOMDartState::CurrentDocument() {
+ return Current()->document_.get();
+}
+
+LocalFrame* DOMDartState::CurrentFrame() {
+ return Current()->document_->frame();
+}
+
+LocalDOMWindow* DOMDartState::CurrentWindow() {
+ return Current()->document_->domWindow();
+}
+
+}
« no previous file with comments | « sky/engine/core/script/dom_dart_state.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698