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

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

Issue 14929004: Remove captureEvents and releaseEvents (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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/html/HTMLDocument.idl ('k') | Source/core/page/DOMWindow.cpp » ('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, 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 DEFINE_ATTRIBUTE_EVENT_LISTENER(unload); 335 DEFINE_ATTRIBUTE_EVENT_LISTENER(unload);
336 DEFINE_ATTRIBUTE_EVENT_LISTENER(volumechange); 336 DEFINE_ATTRIBUTE_EVENT_LISTENER(volumechange);
337 DEFINE_ATTRIBUTE_EVENT_LISTENER(waiting); 337 DEFINE_ATTRIBUTE_EVENT_LISTENER(waiting);
338 338
339 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationstart, webkitAnima tionStart); 339 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationstart, webkitAnima tionStart);
340 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationiteration, webkitA nimationIteration); 340 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationiteration, webkitA nimationIteration);
341 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationend, webkitAnimati onEnd); 341 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationend, webkitAnimati onEnd);
342 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkittransitionend, webkitTransi tionEnd); 342 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkittransitionend, webkitTransi tionEnd);
343 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(transitionend, transitionend); 343 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(transitionend, transitionend);
344 344
345 void captureEvents();
346 void releaseEvents();
347
348 void finishedLoading(); 345 void finishedLoading();
349 346
350 using RefCounted<DOMWindow>::ref; 347 using RefCounted<DOMWindow>::ref;
351 using RefCounted<DOMWindow>::deref; 348 using RefCounted<DOMWindow>::deref;
352 349
353 DEFINE_ATTRIBUTE_EVENT_LISTENER(devicemotion); 350 DEFINE_ATTRIBUTE_EVENT_LISTENER(devicemotion);
354 DEFINE_ATTRIBUTE_EVENT_LISTENER(deviceorientation); 351 DEFINE_ATTRIBUTE_EVENT_LISTENER(deviceorientation);
355 352
356 // HTML 5 key/value storage 353 // HTML 5 key/value storage
357 Storage* sessionStorage(ExceptionCode&) const; 354 Storage* sessionStorage(ExceptionCode&) const;
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 } 442 }
446 443
447 inline String DOMWindow::defaultStatus() const 444 inline String DOMWindow::defaultStatus() const
448 { 445 {
449 return m_defaultStatus; 446 return m_defaultStatus;
450 } 447 }
451 448
452 } // namespace WebCore 449 } // namespace WebCore
453 450
454 #endif // DOMWindow_h 451 #endif // DOMWindow_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLDocument.idl ('k') | Source/core/page/DOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698