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

Unified Diff: Source/core/dom/CompositorProxy.idl

Issue 1024233002: compositor-worker: Introduce CompositorProxy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 years, 9 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
« Source/core/dom/CompositorProxy.cpp ('K') | « Source/core/dom/CompositorProxy.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/CompositorProxy.idl
diff --git a/Source/core/dom/CompositorProxy.idl b/Source/core/dom/CompositorProxy.idl
new file mode 100644
index 0000000000000000000000000000000000000000..4b7be63c62eb2e31ca793941c40b91895174f6e0
--- /dev/null
+++ b/Source/core/dom/CompositorProxy.idl
@@ -0,0 +1,15 @@
+// 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.
+
+[
+ Constructor(Element element, DOMString[] attributeArray),
+ ConstructorCallWith=ExecutionContext,
+ Exposed=Window,
+ GarbageCollected,
+ RaisesException=Constructor,
+ RuntimeEnabled=CompositorWorker,
+] interface CompositorProxy {
+ readonly attribute long elementId;
esprehn 2015/03/25 23:21:48 I don't think we should be exposing these ids to t
+ readonly attribute long attributes;
esprehn 2015/03/25 23:21:48 This is just for hacking? We don't use bit fields
sadrul 2015/03/27 17:23:29 Both of these are for testing, yes. I have removed
+};
« Source/core/dom/CompositorProxy.cpp ('K') | « Source/core/dom/CompositorProxy.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698