| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "DOMWindow.h" | 27 #include "DOMWindow.h" |
| 28 | 28 |
| 29 #include "BarInfo.h" | 29 #include "BarInfo.h" |
| 30 #include "BeforeUnloadEvent.h" | 30 #include "BeforeUnloadEvent.h" |
| 31 #include "CSSComputedStyleDeclaration.h" | 31 #include "CSSComputedStyleDeclaration.h" |
| 32 #include "CSSRuleList.h" | 32 #include "CSSRuleList.h" |
| 33 #include "CSSStyleSelector.h" | 33 #include "CSSStyleSelector.h" |
| 34 #include "CString.h" | 34 #include "CString.h" |
| 35 #include "Chaos.h" |
| 35 #include "Chrome.h" | 36 #include "Chrome.h" |
| 36 #include "Console.h" | 37 #include "Console.h" |
| 37 #include "DOMSelection.h" | 38 #include "DOMSelection.h" |
| 38 #include "DOMTimer.h" | 39 #include "DOMTimer.h" |
| 39 #include "Document.h" | 40 #include "Document.h" |
| 40 #include "Element.h" | 41 #include "Element.h" |
| 41 #include "EventException.h" | 42 #include "EventException.h" |
| 42 #include "EventListener.h" | 43 #include "EventListener.h" |
| 43 #include "EventNames.h" | 44 #include "EventNames.h" |
| 44 #include "ExceptionCode.h" | 45 #include "ExceptionCode.h" |
| (...skipping 1953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1998 void DOMWindow::captureEvents() | 1999 void DOMWindow::captureEvents() |
| 1999 { | 2000 { |
| 2000 // Not implemented. | 2001 // Not implemented. |
| 2001 } | 2002 } |
| 2002 | 2003 |
| 2003 void DOMWindow::releaseEvents() | 2004 void DOMWindow::releaseEvents() |
| 2004 { | 2005 { |
| 2005 // Not implemented. | 2006 // Not implemented. |
| 2006 } | 2007 } |
| 2007 | 2008 |
| 2009 Chaos *DOMWindow::chaos() const { |
| 2010 if (!m_chaos) |
| 2011 m_chaos = new Chaos(); |
| 2012 return m_chaos.get(); |
| 2013 } |
| 2014 |
| 2008 } // namespace WebCore | 2015 } // namespace WebCore |
| OLD | NEW |