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

Side by Side Diff: third_party/WebCore/inspector/JavaScriptCallFrame.idl

Issue 10769002: Roll IDL to multivm@683 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix notifications path in fremontcut. Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 21 matching lines...) Expand all
32 ] JavaScriptCallFrame { 32 ] JavaScriptCallFrame {
33 33
34 // Scope type 34 // Scope type
35 const unsigned short GLOBAL_SCOPE = 0; 35 const unsigned short GLOBAL_SCOPE = 0;
36 const unsigned short LOCAL_SCOPE = 1; 36 const unsigned short LOCAL_SCOPE = 1;
37 const unsigned short WITH_SCOPE = 2; 37 const unsigned short WITH_SCOPE = 2;
38 const unsigned short CLOSURE_SCOPE = 3; 38 const unsigned short CLOSURE_SCOPE = 3;
39 const unsigned short CATCH_SCOPE = 4; 39 const unsigned short CATCH_SCOPE = 4;
40 40
41 [Custom] void evaluate(in DOMString script); 41 [Custom] void evaluate(in DOMString script);
42 [Custom] DOMObject restart();
42 43
43 readonly attribute JavaScriptCallFrame caller; 44 readonly attribute JavaScriptCallFrame caller;
44 readonly attribute long sourceID; 45 readonly attribute long sourceID;
45 readonly attribute long line; 46 readonly attribute long line;
46 readonly attribute long column; 47 readonly attribute long column;
47 readonly attribute [CustomGetter] Array scopeChain; 48 readonly attribute [CustomGetter] Array scopeChain;
48 [Custom] unsigned short scopeType(in int scopeIndex); 49 [Custom] unsigned short scopeType(in int scopeIndex);
49 readonly attribute [CustomGetter] Object thisObject; 50 readonly attribute [CustomGetter] Object thisObject;
50 readonly attribute DOMString functionName; 51 readonly attribute DOMString functionName;
51 readonly attribute [CustomGetter] DOMString type; 52 readonly attribute [CustomGetter] DOMString type;
52 }; 53 };
53 54
54 } 55 }
OLDNEW
« no previous file with comments | « third_party/WebCore/html/track/TextTrackList.idl ('k') | third_party/WebCore/notifications/DOMWindowNotifications.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698