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

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

Issue 22859012: Add support for DOM Level 3 WheelEvent (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Simplify test case Created 7 years, 4 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) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 DEFINE_ATTRIBUTE_EVENT_LISTENER(seeking); 313 DEFINE_ATTRIBUTE_EVENT_LISTENER(seeking);
314 DEFINE_ATTRIBUTE_EVENT_LISTENER(select); 314 DEFINE_ATTRIBUTE_EVENT_LISTENER(select);
315 DEFINE_ATTRIBUTE_EVENT_LISTENER(stalled); 315 DEFINE_ATTRIBUTE_EVENT_LISTENER(stalled);
316 DEFINE_ATTRIBUTE_EVENT_LISTENER(storage); 316 DEFINE_ATTRIBUTE_EVENT_LISTENER(storage);
317 DEFINE_ATTRIBUTE_EVENT_LISTENER(submit); 317 DEFINE_ATTRIBUTE_EVENT_LISTENER(submit);
318 DEFINE_ATTRIBUTE_EVENT_LISTENER(suspend); 318 DEFINE_ATTRIBUTE_EVENT_LISTENER(suspend);
319 DEFINE_ATTRIBUTE_EVENT_LISTENER(timeupdate); 319 DEFINE_ATTRIBUTE_EVENT_LISTENER(timeupdate);
320 DEFINE_ATTRIBUTE_EVENT_LISTENER(unload); 320 DEFINE_ATTRIBUTE_EVENT_LISTENER(unload);
321 DEFINE_ATTRIBUTE_EVENT_LISTENER(volumechange); 321 DEFINE_ATTRIBUTE_EVENT_LISTENER(volumechange);
322 DEFINE_ATTRIBUTE_EVENT_LISTENER(waiting); 322 DEFINE_ATTRIBUTE_EVENT_LISTENER(waiting);
323 DEFINE_ATTRIBUTE_EVENT_LISTENER(wheel);
323 324
324 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationstart, webkitAnima tionStart); 325 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationstart, webkitAnima tionStart);
325 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationiteration, webkitA nimationIteration); 326 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationiteration, webkitA nimationIteration);
326 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationend, webkitAnimati onEnd); 327 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationend, webkitAnimati onEnd);
327 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkittransitionend, webkitTransi tionEnd); 328 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkittransitionend, webkitTransi tionEnd);
328 DEFINE_ATTRIBUTE_EVENT_LISTENER(transitionend); 329 DEFINE_ATTRIBUTE_EVENT_LISTENER(transitionend);
329 330
330 void captureEvents() { } 331 void captureEvents() { }
331 void releaseEvents() { } 332 void releaseEvents() { }
332 333
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 } 435 }
435 436
436 inline String DOMWindow::defaultStatus() const 437 inline String DOMWindow::defaultStatus() const
437 { 438 {
438 return m_defaultStatus; 439 return m_defaultStatus;
439 } 440 }
440 441
441 } // namespace WebCore 442 } // namespace WebCore
442 443
443 #endif // DOMWindow_h 444 #endif // DOMWindow_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698