| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 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 20 matching lines...) Expand all Loading... |
| 31 #include "gen/sky/platform/RuntimeEnabledFeatures.h" | 31 #include "gen/sky/platform/RuntimeEnabledFeatures.h" |
| 32 #include "sky/engine/bindings/core/v8/Dictionary.h" | 32 #include "sky/engine/bindings/core/v8/Dictionary.h" |
| 33 #include "sky/engine/bindings/core/v8/ExceptionMessages.h" | 33 #include "sky/engine/bindings/core/v8/ExceptionMessages.h" |
| 34 #include "sky/engine/bindings/core/v8/ExceptionState.h" | 34 #include "sky/engine/bindings/core/v8/ExceptionState.h" |
| 35 #include "sky/engine/bindings/core/v8/ExceptionStatePlaceholder.h" | 35 #include "sky/engine/bindings/core/v8/ExceptionStatePlaceholder.h" |
| 36 #include "sky/engine/bindings/core/v8/ScriptCallStackFactory.h" | 36 #include "sky/engine/bindings/core/v8/ScriptCallStackFactory.h" |
| 37 #include "sky/engine/bindings/core/v8/ScriptController.h" | 37 #include "sky/engine/bindings/core/v8/ScriptController.h" |
| 38 #include "sky/engine/bindings/core/v8/SerializedScriptValue.h" | 38 #include "sky/engine/bindings/core/v8/SerializedScriptValue.h" |
| 39 #include "sky/engine/core/app/Application.h" | 39 #include "sky/engine/core/app/Application.h" |
| 40 #include "sky/engine/core/css/CSSComputedStyleDeclaration.h" | 40 #include "sky/engine/core/css/CSSComputedStyleDeclaration.h" |
| 41 #include "sky/engine/core/css/CSSRuleList.h" | |
| 42 #include "sky/engine/core/css/DOMWindowCSS.h" | 41 #include "sky/engine/core/css/DOMWindowCSS.h" |
| 43 #include "sky/engine/core/css/MediaQueryList.h" | 42 #include "sky/engine/core/css/MediaQueryList.h" |
| 44 #include "sky/engine/core/css/MediaQueryMatcher.h" | 43 #include "sky/engine/core/css/MediaQueryMatcher.h" |
| 45 #include "sky/engine/core/css/StyleMedia.h" | 44 #include "sky/engine/core/css/StyleMedia.h" |
| 46 #include "sky/engine/core/css/resolver/StyleResolver.h" | 45 #include "sky/engine/core/css/resolver/StyleResolver.h" |
| 47 #include "sky/engine/core/dom/Document.h" | 46 #include "sky/engine/core/dom/Document.h" |
| 48 #include "sky/engine/core/dom/Element.h" | 47 #include "sky/engine/core/dom/Element.h" |
| 49 #include "sky/engine/core/dom/ExceptionCode.h" | 48 #include "sky/engine/core/dom/ExceptionCode.h" |
| 50 #include "sky/engine/core/dom/ExecutionContext.h" | 49 #include "sky/engine/core/dom/ExecutionContext.h" |
| 51 #include "sky/engine/core/dom/RequestAnimationFrameCallback.h" | 50 #include "sky/engine/core/dom/RequestAnimationFrameCallback.h" |
| (...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 { | 781 { |
| 783 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext<LocalDOMWin
dow>::lifecycleNotifier()); | 782 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext<LocalDOMWin
dow>::lifecycleNotifier()); |
| 784 } | 783 } |
| 785 | 784 |
| 786 PassOwnPtr<LifecycleNotifier<LocalDOMWindow> > LocalDOMWindow::createLifecycleNo
tifier() | 785 PassOwnPtr<LifecycleNotifier<LocalDOMWindow> > LocalDOMWindow::createLifecycleNo
tifier() |
| 787 { | 786 { |
| 788 return DOMWindowLifecycleNotifier::create(this); | 787 return DOMWindowLifecycleNotifier::create(this); |
| 789 } | 788 } |
| 790 | 789 |
| 791 } // namespace blink | 790 } // namespace blink |
| OLD | NEW |