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

Unified Diff: third_party/WebCore/page/Console.idl

Issue 10590003: Roll IDL to multivm@615 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebCore/inspector/ScriptProfileNode.idl ('k') | third_party/WebCore/page/Navigator.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/page/Console.idl
diff --git a/third_party/WebCore/page/Console.idl b/third_party/WebCore/page/Console.idl
index 5f215e89b8e5116b81d894982838a5ef88308d5e..a268fe379d111cd2c244245e2dd56101750f9c78 100644
--- a/third_party/WebCore/page/Console.idl
+++ b/third_party/WebCore/page/Console.idl
@@ -46,7 +46,11 @@ module window {
[CallWith=ScriptArguments|CallStack] void markTimeline();
#if defined(ENABLE_JAVASCRIPT_DEBUGGER) && ENABLE_JAVASCRIPT_DEBUGGER
- readonly attribute sequence<ScriptProfile> profiles;
+ // As per spec: http://www.w3.org/TR/WebIDL/#idl-sequence
+ // "Sequences must not be used as the type of an attribute, constant or exception field."
+ // FIXME: this will lead to BUG console.profiles !== console.profiles as profile will always returns new array.
+ // FIXME: implement in the generator
+ // readonly attribute ScriptProfile[] profiles;
[Custom] void profile(in DOMString title);
[Custom] void profileEnd(in DOMString title);
#endif
« no previous file with comments | « third_party/WebCore/inspector/ScriptProfileNode.idl ('k') | third_party/WebCore/page/Navigator.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698