| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All |
| 3 * Rights Reserved. | 3 * Rights Reserved. |
| 4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. | 4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. |
| 5 * (http://www.torchmobile.com/) | 5 * (http://www.torchmobile.com/) |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 #include "core/frame/FrameHost.h" | 37 #include "core/frame/FrameHost.h" |
| 38 #include "core/frame/FrameView.h" | 38 #include "core/frame/FrameView.h" |
| 39 #include "core/frame/PageScaleConstraints.h" | 39 #include "core/frame/PageScaleConstraints.h" |
| 40 #include "core/frame/PageScaleConstraintsSet.h" | 40 #include "core/frame/PageScaleConstraintsSet.h" |
| 41 #include "core/frame/RemoteFrame.h" | 41 #include "core/frame/RemoteFrame.h" |
| 42 #include "core/frame/RemoteFrameView.h" | 42 #include "core/frame/RemoteFrameView.h" |
| 43 #include "core/frame/Settings.h" | 43 #include "core/frame/Settings.h" |
| 44 #include "core/frame/VisualViewport.h" | 44 #include "core/frame/VisualViewport.h" |
| 45 #include "core/html/HTMLMediaElement.h" | 45 #include "core/html/HTMLMediaElement.h" |
| 46 #include "core/inspector/ConsoleMessageStorage.h" | 46 #include "core/inspector/ConsoleMessageStorage.h" |
| 47 #include "core/inspector/InspectorInstrumentation.h" | |
| 48 #include "core/layout/TextAutosizer.h" | 47 #include "core/layout/TextAutosizer.h" |
| 49 #include "core/page/AutoscrollController.h" | 48 #include "core/page/AutoscrollController.h" |
| 50 #include "core/page/ChromeClient.h" | 49 #include "core/page/ChromeClient.h" |
| 51 #include "core/page/ContextMenuController.h" | 50 #include "core/page/ContextMenuController.h" |
| 52 #include "core/page/DragController.h" | 51 #include "core/page/DragController.h" |
| 53 #include "core/page/FocusController.h" | 52 #include "core/page/FocusController.h" |
| 54 #include "core/page/PointerLockController.h" | 53 #include "core/page/PointerLockController.h" |
| 55 #include "core/page/ScopedPageSuspender.h" | 54 #include "core/page/ScopedPageSuspender.h" |
| 56 #include "core/page/ValidationMessageClient.h" | 55 #include "core/page/ValidationMessageClient.h" |
| 57 #include "core/page/scrolling/OverscrollController.h" | 56 #include "core/page/scrolling/OverscrollController.h" |
| 58 #include "core/page/scrolling/ScrollingCoordinator.h" | 57 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 59 #include "core/page/scrolling/TopDocumentRootScrollerController.h" | 58 #include "core/page/scrolling/TopDocumentRootScrollerController.h" |
| 60 #include "core/paint/PaintLayer.h" | 59 #include "core/paint/PaintLayer.h" |
| 60 #include "core/probe/CoreProbes.h" |
| 61 #include "platform/WebFrameScheduler.h" | 61 #include "platform/WebFrameScheduler.h" |
| 62 #include "platform/graphics/GraphicsLayer.h" | 62 #include "platform/graphics/GraphicsLayer.h" |
| 63 #include "platform/loader/fetch/ResourceFetcher.h" | 63 #include "platform/loader/fetch/ResourceFetcher.h" |
| 64 #include "platform/plugins/PluginData.h" | 64 #include "platform/plugins/PluginData.h" |
| 65 #include "public/platform/Platform.h" | 65 #include "public/platform/Platform.h" |
| 66 | 66 |
| 67 namespace blink { | 67 namespace blink { |
| 68 | 68 |
| 69 // Set of all live pages; includes internal Page objects that are | 69 // Set of all live pages; includes internal Page objects that are |
| 70 // not observable from scripts. | 70 // not observable from scripts. |
| (...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 : chromeClient(nullptr), | 672 : chromeClient(nullptr), |
| 673 contextMenuClient(nullptr), | 673 contextMenuClient(nullptr), |
| 674 editorClient(nullptr), | 674 editorClient(nullptr), |
| 675 spellCheckerClient(nullptr) {} | 675 spellCheckerClient(nullptr) {} |
| 676 | 676 |
| 677 Page::PageClients::~PageClients() {} | 677 Page::PageClients::~PageClients() {} |
| 678 | 678 |
| 679 template class CORE_TEMPLATE_EXPORT Supplement<Page>; | 679 template class CORE_TEMPLATE_EXPORT Supplement<Page>; |
| 680 | 680 |
| 681 } // namespace blink | 681 } // namespace blink |
| OLD | NEW |