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

Side by Side Diff: Source/core/frame/Window.idl

Issue 332973002: Remove [PerWorldBindings] from not performance-sensitive methods (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Text.idl ('k') | no next file » | 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 // DOM Level 2 AbstractView Interface 135 // DOM Level 2 AbstractView Interface
136 readonly attribute Document document; 136 readonly attribute Document document;
137 137
138 // CSSOM View Module 138 // CSSOM View Module
139 MediaQueryList matchMedia(DOMString query); 139 MediaQueryList matchMedia(DOMString query);
140 140
141 // styleMedia has been removed from the CSSOM View specification. 141 // styleMedia has been removed from the CSSOM View specification.
142 readonly attribute StyleMedia styleMedia; 142 readonly attribute StyleMedia styleMedia;
143 143
144 // DOM Level 2 Style Interface 144 // DOM Level 2 Style Interface
145 [PerWorldBindings] CSSStyleDeclaration getComputedStyle([Default=Undefined] optional Element element, 145 CSSStyleDeclaration getComputedStyle([Default=Undefined] optional Element el ement,
146 [TreatNullAs=NullStr ing, TreatUndefinedAs=NullString, Default=Undefined] optional DOMString pseudoEl ement); 146 [TreatNullAs=NullStr ing, TreatUndefinedAs=NullString, Default=Undefined] optional DOMString pseudoEl ement);
147 147
148 // WebKit extensions 148 // WebKit extensions
149 [MeasureAs=GetMatchedCSSRules] CSSRuleList getMatchedCSSRules([Default=Undef ined] optional Element element, 149 [MeasureAs=GetMatchedCSSRules] CSSRuleList getMatchedCSSRules([Default=Undef ined] optional Element element,
150 [TreatNullAs=N ullString, TreatUndefinedAs=NullString, Default=Undefined] optional DOMString ps eudoElement); 150 [TreatNullAs=N ullString, TreatUndefinedAs=NullString, Default=Undefined] optional DOMString ps eudoElement);
151 151
152 [Replaceable] readonly attribute double devicePixelRatio; 152 [Replaceable] readonly attribute double devicePixelRatio;
153 153
154 [MeasureAs=PrefixedConvertPointFromPageToNode] WebKitPoint webkitConvertPoin tFromPageToNode([Default=Undefined] optional Node node, 154 [MeasureAs=PrefixedConvertPointFromPageToNode] WebKitPoint webkitConvertPoin tFromPageToNode([Default=Undefined] optional Node node,
155 [Default=Undefined] optional WebKitPoint p); 155 [Default=Undefined] optional WebKitPoint p);
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 211 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
212 212
213 [NotEnumerable] getter Window (unsigned long index); 213 [NotEnumerable] getter Window (unsigned long index);
214 [Custom, NotEnumerable] getter Window (DOMString name); 214 [Custom, NotEnumerable] getter Window (DOMString name);
215 }; 215 };
216 216
217 Window implements GlobalEventHandlers; 217 Window implements GlobalEventHandlers;
218 Window implements WindowBase64; 218 Window implements WindowBase64;
219 Window implements WindowEventHandlers; 219 Window implements WindowEventHandlers;
220 Window implements WindowTimers; 220 Window implements WindowTimers;
OLDNEW
« no previous file with comments | « Source/core/dom/Text.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698