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

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

Issue 143823004: Implement DeviceLight (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: DeviceLight API working fine (make the flag back to status=experimental) 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
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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 [MeasureAs=PrefixedRequestAnimationFrame] long webkitRequestAnimationFrame(R equestAnimationFrameCallback callback); 171 [MeasureAs=PrefixedRequestAnimationFrame] long webkitRequestAnimationFrame(R equestAnimationFrameCallback callback);
172 [ImplementedAs=cancelAnimationFrame] void webkitCancelAnimationFrame(long id ); 172 [ImplementedAs=cancelAnimationFrame] void webkitCancelAnimationFrame(long id );
173 [ImplementedAs=cancelAnimationFrame] void webkitCancelRequestAnimationFrame( long id); // This is a deprecated alias for webkitCancelAnimationFrame(). Remove this when removing vendor prefix. 173 [ImplementedAs=cancelAnimationFrame] void webkitCancelRequestAnimationFrame( long id); // This is a deprecated alias for webkitCancelAnimationFrame(). Remove this when removing vendor prefix.
174 174
175 [Replaceable] readonly attribute CSS CSS; 175 [Replaceable] readonly attribute CSS CSS;
176 176
177 // Event handler attributes 177 // Event handler attributes
178 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationen d; 178 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationen d;
179 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationit eration; 179 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationit eration;
180 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationst art; 180 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationst art;
181 [RuntimeEnabled=DeviceLight] attribute EventHandler ondevicelight;
181 [RuntimeEnabled=DeviceMotion] attribute EventHandler ondevicemotion; 182 [RuntimeEnabled=DeviceMotion] attribute EventHandler ondevicemotion;
182 [RuntimeEnabled=DeviceOrientation] attribute EventHandler ondeviceorientatio n; 183 [RuntimeEnabled=DeviceOrientation] attribute EventHandler ondeviceorientatio n;
183 [RuntimeEnabled=OrientationEvent] attribute EventHandler onorientationchange ; 184 [RuntimeEnabled=OrientationEvent] attribute EventHandler onorientationchange ;
184 attribute EventHandler onsearch; 185 attribute EventHandler onsearch;
185 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; 186 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
186 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 187 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
187 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 188 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
188 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 189 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
189 attribute EventHandler ontransitionend; 190 attribute EventHandler ontransitionend;
190 attribute EventHandler onwebkitanimationend; 191 attribute EventHandler onwebkitanimationend;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 240
240 [NotEnumerable] getter Window (unsigned long index); 241 [NotEnumerable] getter Window (unsigned long index);
241 [Custom, NotEnumerable] getter Window (DOMString name); 242 [Custom, NotEnumerable] getter Window (DOMString name);
242 }; 243 };
243 244
244 Window implements GlobalEventHandlers; 245 Window implements GlobalEventHandlers;
245 Window implements ImageBitmapFactories; 246 Window implements ImageBitmapFactories;
246 Window implements WindowBase64; 247 Window implements WindowBase64;
247 Window implements WindowEventHandlers; 248 Window implements WindowEventHandlers;
248 Window implements WindowTimers; 249 Window implements WindowTimers;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698