| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 #include "core/dom/RequestAnimationFrameCallback.h" | 51 #include "core/dom/RequestAnimationFrameCallback.h" |
| 52 #include "core/editing/Editor.h" | 52 #include "core/editing/Editor.h" |
| 53 #include "core/events/DOMWindowEventQueue.h" | 53 #include "core/events/DOMWindowEventQueue.h" |
| 54 #include "core/events/EventListener.h" | 54 #include "core/events/EventListener.h" |
| 55 #include "core/events/HashChangeEvent.h" | 55 #include "core/events/HashChangeEvent.h" |
| 56 #include "core/events/MessageEvent.h" | 56 #include "core/events/MessageEvent.h" |
| 57 #include "core/events/PageTransitionEvent.h" | 57 #include "core/events/PageTransitionEvent.h" |
| 58 #include "core/events/PopStateEvent.h" | 58 #include "core/events/PopStateEvent.h" |
| 59 #include "core/frame/BarProp.h" | 59 #include "core/frame/BarProp.h" |
| 60 #include "core/frame/Console.h" | 60 #include "core/frame/Console.h" |
| 61 #include "core/frame/DOMWindowLifecycleNotifier.h" | |
| 62 #include "core/frame/EventHandlerRegistry.h" | 61 #include "core/frame/EventHandlerRegistry.h" |
| 63 #include "core/frame/FrameConsole.h" | 62 #include "core/frame/FrameConsole.h" |
| 64 #include "core/frame/FrameHost.h" | 63 #include "core/frame/FrameHost.h" |
| 65 #include "core/frame/FrameView.h" | 64 #include "core/frame/FrameView.h" |
| 66 #include "core/frame/History.h" | 65 #include "core/frame/History.h" |
| 67 #include "core/frame/LocalFrame.h" | 66 #include "core/frame/LocalFrame.h" |
| 68 #include "core/frame/Location.h" | 67 #include "core/frame/Location.h" |
| 69 #include "core/frame/Navigator.h" | 68 #include "core/frame/Navigator.h" |
| 70 #include "core/frame/Screen.h" | 69 #include "core/frame/Screen.h" |
| 71 #include "core/frame/ScrollToOptions.h" | 70 #include "core/frame/ScrollToOptions.h" |
| (...skipping 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1788 return m_frameObserver->frame(); | 1787 return m_frameObserver->frame(); |
| 1789 } | 1788 } |
| 1790 | 1789 |
| 1791 v8::Handle<v8::Object> LocalDOMWindow::wrap(v8::Handle<v8::Object> creationConte
xt, v8::Isolate* isolate) | 1790 v8::Handle<v8::Object> LocalDOMWindow::wrap(v8::Handle<v8::Object> creationConte
xt, v8::Isolate* isolate) |
| 1792 { | 1791 { |
| 1793 ASSERT_NOT_REACHED(); // LocalDOMWindow has [Custom=ToV8]. | 1792 ASSERT_NOT_REACHED(); // LocalDOMWindow has [Custom=ToV8]. |
| 1794 return v8::Handle<v8::Object>(); | 1793 return v8::Handle<v8::Object>(); |
| 1795 } | 1794 } |
| 1796 | 1795 |
| 1797 } // namespace blink | 1796 } // namespace blink |
| OLD | NEW |