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

Side by Side Diff: Source/core/page/DOMWindow.idl

Issue 13799007: Support for selective DOM activity logging, based on IDL attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed bindings tests output, temporarily, to work around diff difficulty. Created 7 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
« no previous file with comments | « Source/core/html/HTMLDocument.idl ('k') | Source/core/page/Location.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 26 matching lines...) Expand all
37 ] interface DOMWindow { 37 ] interface DOMWindow {
38 // DOM Level 0 38 // DOM Level 0
39 [Replaceable] readonly attribute Screen screen; 39 [Replaceable] readonly attribute Screen screen;
40 [Replaceable, DoNotCheckSecurityOnGetter] readonly attribute History history ; 40 [Replaceable, DoNotCheckSecurityOnGetter] readonly attribute History history ;
41 [Replaceable] readonly attribute BarInfo locationbar; 41 [Replaceable] readonly attribute BarInfo locationbar;
42 [Replaceable] readonly attribute BarInfo menubar; 42 [Replaceable] readonly attribute BarInfo menubar;
43 [Replaceable] readonly attribute BarInfo personalbar; 43 [Replaceable] readonly attribute BarInfo personalbar;
44 [Replaceable] readonly attribute BarInfo scrollbars; 44 [Replaceable] readonly attribute BarInfo scrollbars;
45 [Replaceable] readonly attribute BarInfo statusbar; 45 [Replaceable] readonly attribute BarInfo statusbar;
46 [Replaceable] readonly attribute BarInfo toolbar; 46 [Replaceable] readonly attribute BarInfo toolbar;
47 [Replaceable] readonly attribute Navigator navigator; 47 [Replaceable, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] readonl y attribute Navigator navigator;
48 [Replaceable] readonly attribute Navigator clientInformation; 48 [Replaceable] readonly attribute Navigator clientInformation;
49 readonly attribute Crypto crypto; 49 readonly attribute Crypto crypto;
50 [DoNotCheckSecurity, CustomSetter, Unforgeable] attribute Location location; 50 [DoNotCheckSecurity, CustomSetter, Unforgeable] attribute Location location;
51 [Replaceable, CustomGetter, CustomSetter] readonly attribute Event event; 51 [Replaceable, CustomGetter, CustomSetter] readonly attribute Event event;
52 52
53 DOMSelection getSelection(); 53 DOMSelection getSelection();
54 54
55 [CheckSecurityForNode] readonly attribute Element frameElement; 55 [CheckSecurityForNode] readonly attribute Element frameElement;
56 56
57 [DoNotCheckSecurity, CallWith=ScriptExecutionContext] void focus(); 57 [DoNotCheckSecurity, CallWith=ScriptExecutionContext] void focus();
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 CSSRuleList getMatchedCSSRules([Default=Undefined] optional Element element, 142 CSSRuleList getMatchedCSSRules([Default=Undefined] optional Element element,
143 [TreatNullAs=NullString, TreatUndefinedAs=Nul lString,Default=Undefined] optional DOMString pseudoElement); 143 [TreatNullAs=NullString, TreatUndefinedAs=Nul lString,Default=Undefined] optional DOMString pseudoElement);
144 144
145 [Replaceable] readonly attribute double devicePixelRatio; 145 [Replaceable] readonly attribute double devicePixelRatio;
146 146
147 DOMPoint webkitConvertPointFromPageToNode([Default=Undefined] optional Node node, 147 DOMPoint webkitConvertPointFromPageToNode([Default=Undefined] optional Node node,
148 [Default=Undefined] optional DOMPo int p); 148 [Default=Undefined] optional DOMPo int p);
149 DOMPoint webkitConvertPointFromNodeToPage([Default=Undefined] optional Node node, 149 DOMPoint webkitConvertPointFromNodeToPage([Default=Undefined] optional Node node,
150 [Default=Undefined] optional DOMPo int p); 150 [Default=Undefined] optional DOMPo int p);
151 151
152 [EnabledAtRuntime] readonly attribute DOMApplicationCache applicationCache; 152 [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds] re adonly attribute DOMApplicationCache applicationCache;
153 153
154 [EnabledAtRuntime, GetterRaisesException] readonly attribute Storage session Storage; 154 [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds, Ge tterRaisesException] readonly attribute Storage sessionStorage;
155 [EnabledAtRuntime, GetterRaisesException] readonly attribute Storage localSt orage; 155 [EnabledAtRuntime, PerWorldBindings, ActivityLog=GetterForIsolatedWorlds, Ge tterRaisesException] readonly attribute Storage localStorage;
156 156
157 #if defined(ENABLE_ORIENTATION_EVENTS) && ENABLE_ORIENTATION_EVENTS 157 #if defined(ENABLE_ORIENTATION_EVENTS) && ENABLE_ORIENTATION_EVENTS
158 // This is the interface orientation in degrees. Some examples are: 158 // This is the interface orientation in degrees. Some examples are:
159 // 0 is straight up; -90 is when the device is rotated 90 clockwise; 159 // 0 is straight up; -90 is when the device is rotated 90 clockwise;
160 // 90 is when rotated counter clockwise. 160 // 90 is when rotated counter clockwise.
161 readonly attribute long orientation; 161 readonly attribute long orientation;
162 #endif 162 #endif
163 163
164 [Replaceable] readonly attribute Console console; 164 [Replaceable] readonly attribute Console console;
165 165
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 attribute MutationRecordConstructor MutationRecord; 752 attribute MutationRecordConstructor MutationRecord;
753 753
754 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource; 754 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource;
755 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer; 755 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer;
756 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList; 756 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList;
757 757
758 // window.toString() requires special handling in V8 758 // window.toString() requires special handling in V8
759 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 759 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
760 }; 760 };
761 761
OLDNEW
« no previous file with comments | « Source/core/html/HTMLDocument.idl ('k') | Source/core/page/Location.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698