| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R
ights Reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All R
ights Reserved. |
| 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "core/frame/FrameConsole.h" | 33 #include "core/frame/FrameConsole.h" |
| 34 #include "core/frame/FrameHost.h" | 34 #include "core/frame/FrameHost.h" |
| 35 #include "core/frame/FrameView.h" | 35 #include "core/frame/FrameView.h" |
| 36 #include "core/frame/LocalDOMWindow.h" | 36 #include "core/frame/LocalDOMWindow.h" |
| 37 #include "core/frame/LocalFrame.h" | 37 #include "core/frame/LocalFrame.h" |
| 38 #include "core/frame/RemoteFrame.h" | 38 #include "core/frame/RemoteFrame.h" |
| 39 #include "core/frame/RemoteFrameView.h" | 39 #include "core/frame/RemoteFrameView.h" |
| 40 #include "core/frame/Settings.h" | 40 #include "core/frame/Settings.h" |
| 41 #include "core/inspector/InspectorController.h" | 41 #include "core/inspector/InspectorController.h" |
| 42 #include "core/inspector/InspectorInstrumentation.h" | 42 #include "core/inspector/InspectorInstrumentation.h" |
| 43 #include "core/layout/Layer.h" |
| 43 #include "core/loader/FrameLoader.h" | 44 #include "core/loader/FrameLoader.h" |
| 44 #include "core/loader/HistoryItem.h" | 45 #include "core/loader/HistoryItem.h" |
| 45 #include "core/page/AutoscrollController.h" | 46 #include "core/page/AutoscrollController.h" |
| 46 #include "core/page/Chrome.h" | 47 #include "core/page/Chrome.h" |
| 47 #include "core/page/ChromeClient.h" | 48 #include "core/page/ChromeClient.h" |
| 48 #include "core/page/ContextMenuController.h" | 49 #include "core/page/ContextMenuController.h" |
| 49 #include "core/page/DragController.h" | 50 #include "core/page/DragController.h" |
| 50 #include "core/page/FocusController.h" | 51 #include "core/page/FocusController.h" |
| 51 #include "core/page/FrameTree.h" | 52 #include "core/page/FrameTree.h" |
| 52 #include "core/page/PointerLockController.h" | 53 #include "core/page/PointerLockController.h" |
| 53 #include "core/page/ValidationMessageClient.h" | 54 #include "core/page/ValidationMessageClient.h" |
| 54 #include "core/page/scrolling/ScrollingCoordinator.h" | 55 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 55 #include "core/rendering/RenderLayer.h" | |
| 56 #include "core/rendering/RenderView.h" | 56 #include "core/rendering/RenderView.h" |
| 57 #include "core/rendering/TextAutosizer.h" | 57 #include "core/rendering/TextAutosizer.h" |
| 58 #include "platform/graphics/GraphicsLayer.h" | 58 #include "platform/graphics/GraphicsLayer.h" |
| 59 #include "platform/plugins/PluginData.h" | 59 #include "platform/plugins/PluginData.h" |
| 60 #include "wtf/HashMap.h" | 60 #include "wtf/HashMap.h" |
| 61 #include "wtf/RefCountedLeakCounter.h" | 61 #include "wtf/RefCountedLeakCounter.h" |
| 62 #include "wtf/StdLibExtras.h" | 62 #include "wtf/StdLibExtras.h" |
| 63 #include "wtf/text/Base64.h" | 63 #include "wtf/text/Base64.h" |
| 64 | 64 |
| 65 namespace blink { | 65 namespace blink { |
| (...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 , inspectorClient(nullptr) | 620 , inspectorClient(nullptr) |
| 621 , spellCheckerClient(nullptr) | 621 , spellCheckerClient(nullptr) |
| 622 { | 622 { |
| 623 } | 623 } |
| 624 | 624 |
| 625 Page::PageClients::~PageClients() | 625 Page::PageClients::~PageClients() |
| 626 { | 626 { |
| 627 } | 627 } |
| 628 | 628 |
| 629 } // namespace blink | 629 } // namespace blink |
| OLD | NEW |