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

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

Issue 193443004: Undeprecate DocumentClear, CaptureEvents and ReleaseEvents (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update test expectations Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/html/HTMLDocument.h » ('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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 184 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
185 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 185 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
186 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 186 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
187 attribute EventHandler ontransitionend; 187 attribute EventHandler ontransitionend;
188 attribute EventHandler onwebkitanimationend; 188 attribute EventHandler onwebkitanimationend;
189 attribute EventHandler onwebkitanimationiteration; 189 attribute EventHandler onwebkitanimationiteration;
190 attribute EventHandler onwebkitanimationstart; 190 attribute EventHandler onwebkitanimationstart;
191 attribute EventHandler onwebkittransitionend; 191 attribute EventHandler onwebkittransitionend;
192 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH andler onwheel; 192 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH andler onwheel;
193 193
194 [DeprecateAs=CaptureEvents] void captureEvents(); 194 [MeasureAs=WindowCaptureEvents] void captureEvents();
195 [DeprecateAs=ReleaseEvents] void releaseEvents(); 195 [MeasureAs=WindowReleaseEvents] void releaseEvents();
196 196
197 // Additional constructors. 197 // Additional constructors.
198 attribute TransitionEventConstructor WebKitTransitionEvent; 198 attribute TransitionEventConstructor WebKitTransitionEvent;
199 [RuntimeEnabled=CSSAnimationUnprefixed] attribute WebKitAnimationEventConstr uctor AnimationEvent; 199 [RuntimeEnabled=CSSAnimationUnprefixed] attribute WebKitAnimationEventConstr uctor AnimationEvent;
200 [MeasureAs=PrefixedWindowURL] attribute URLConstructor webkitURL; // FIXME: deprecate this. 200 [MeasureAs=PrefixedWindowURL] attribute URLConstructor webkitURL; // FIXME: deprecate this.
201 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add metrics to determine when we can remove this. 201 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add metrics to determine when we can remove this.
202 attribute IDBCursorConstructor webkitIDBCursor; 202 attribute IDBCursorConstructor webkitIDBCursor;
203 attribute IDBDatabaseConstructor webkitIDBDatabase; 203 attribute IDBDatabaseConstructor webkitIDBDatabase;
204 attribute IDBFactoryConstructor webkitIDBFactory; 204 attribute IDBFactoryConstructor webkitIDBFactory;
205 attribute IDBIndexConstructor webkitIDBIndex; 205 attribute IDBIndexConstructor webkitIDBIndex;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 237
238 [NotEnumerable] getter Window (unsigned long index); 238 [NotEnumerable] getter Window (unsigned long index);
239 [Custom, NotEnumerable] getter Window (DOMString name); 239 [Custom, NotEnumerable] getter Window (DOMString name);
240 }; 240 };
241 241
242 Window implements GlobalEventHandlers; 242 Window implements GlobalEventHandlers;
243 Window implements ImageBitmapFactories; 243 Window implements ImageBitmapFactories;
244 Window implements WindowBase64; 244 Window implements WindowBase64;
245 Window implements WindowEventHandlers; 245 Window implements WindowEventHandlers;
246 Window implements WindowTimers; 246 Window implements WindowTimers;
OLDNEW
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/html/HTMLDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698