| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 #include "core/frame/EventHandlerRegistry.h" | 49 #include "core/frame/EventHandlerRegistry.h" |
| 50 #include "core/frame/FrameConsole.h" | 50 #include "core/frame/FrameConsole.h" |
| 51 #include "core/frame/FrameView.h" | 51 #include "core/frame/FrameView.h" |
| 52 #include "core/frame/History.h" | 52 #include "core/frame/History.h" |
| 53 #include "core/frame/Navigator.h" | 53 #include "core/frame/Navigator.h" |
| 54 #include "core/frame/Screen.h" | 54 #include "core/frame/Screen.h" |
| 55 #include "core/frame/ScrollToOptions.h" | 55 #include "core/frame/ScrollToOptions.h" |
| 56 #include "core/frame/Settings.h" | 56 #include "core/frame/Settings.h" |
| 57 #include "core/frame/SuspendableTimer.h" | 57 #include "core/frame/SuspendableTimer.h" |
| 58 #include "core/html/HTMLFrameOwnerElement.h" | 58 #include "core/html/HTMLFrameOwnerElement.h" |
| 59 #include "core/input/EventHandler.h" |
| 59 #include "core/inspector/ConsoleMessageStorage.h" | 60 #include "core/inspector/ConsoleMessageStorage.h" |
| 60 #include "core/inspector/InspectorInstrumentation.h" | 61 #include "core/inspector/InspectorInstrumentation.h" |
| 61 #include "core/loader/DocumentLoader.h" | 62 #include "core/loader/DocumentLoader.h" |
| 62 #include "core/loader/FrameLoaderClient.h" | 63 #include "core/loader/FrameLoaderClient.h" |
| 63 #include "core/loader/SinkDocument.h" | 64 #include "core/loader/SinkDocument.h" |
| 64 #include "core/loader/appcache/ApplicationCache.h" | 65 #include "core/loader/appcache/ApplicationCache.h" |
| 65 #include "core/page/ChromeClient.h" | 66 #include "core/page/ChromeClient.h" |
| 66 #include "core/page/CreateWindow.h" | 67 #include "core/page/CreateWindow.h" |
| 67 #include "core/page/EventHandler.h" | |
| 68 #include "core/page/Page.h" | 68 #include "core/page/Page.h" |
| 69 #include "core/page/WindowFeatures.h" | 69 #include "core/page/WindowFeatures.h" |
| 70 #include "core/page/scrolling/ScrollingCoordinator.h" | 70 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 71 #include "platform/EventDispatchForbiddenScope.h" | 71 #include "platform/EventDispatchForbiddenScope.h" |
| 72 #include "public/platform/Platform.h" | 72 #include "public/platform/Platform.h" |
| 73 #include "public/platform/WebScreenInfo.h" | 73 #include "public/platform/WebScreenInfo.h" |
| 74 | 74 |
| 75 namespace blink { | 75 namespace blink { |
| 76 | 76 |
| 77 LocalDOMWindow::WindowFrameObserver::WindowFrameObserver(LocalDOMWindow* window,
LocalFrame& frame) | 77 LocalDOMWindow::WindowFrameObserver::WindowFrameObserver(LocalDOMWindow* window,
LocalFrame& frame) |
| (...skipping 1435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1513 DOMWindow::trace(visitor); | 1513 DOMWindow::trace(visitor); |
| 1514 DOMWindowLifecycleNotifier::trace(visitor); | 1514 DOMWindowLifecycleNotifier::trace(visitor); |
| 1515 } | 1515 } |
| 1516 | 1516 |
| 1517 LocalFrame* LocalDOMWindow::frame() const | 1517 LocalFrame* LocalDOMWindow::frame() const |
| 1518 { | 1518 { |
| 1519 return m_frameObserver->frame(); | 1519 return m_frameObserver->frame(); |
| 1520 } | 1520 } |
| 1521 | 1521 |
| 1522 } // namespace blink | 1522 } // namespace blink |
| OLD | NEW |