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

Side by Side Diff: lib/src/dom_proxy_mixin.dart

Issue 1091903002: Move DomProxyMixin to this package (Closed) Base URL: git@github.com:dart-lang/web-components.git@master
Patch Set: Created 5 years, 8 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
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4 library web_components.src.dom_proxy_mixin;
5
6 import 'dart:js' as js;
7
8 /// A simple mixin to make it easier to interoperate with the Javascript API of
9 /// a browser object. This is mainly used by classes that expose a Dart API for
10 /// Javascript custom elements.
11 class DomProxyMixin {
12 js.JsObject _proxy;
13 js.JsObject get jsElement {
14 if (_proxy == null) {
15 _proxy = new js.JsObject.fromBrowserObject(this);
16 }
17 return _proxy;
18 }
19 }
OLDNEW
« no previous file with comments | « CHANGELOG.md ('k') | lib/web_components.dart » ('j') | lib/web_components.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698