| 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 20 matching lines...) Expand all Loading... |
| 31 #include "core/fetch/ResourceFetcher.h" | 31 #include "core/fetch/ResourceFetcher.h" |
| 32 #include "core/frame/DOMTimer.h" | 32 #include "core/frame/DOMTimer.h" |
| 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/RemoteFrame.h" | 36 #include "core/frame/RemoteFrame.h" |
| 37 #include "core/frame/RemoteFrameView.h" | 37 #include "core/frame/RemoteFrameView.h" |
| 38 #include "core/frame/Settings.h" | 38 #include "core/frame/Settings.h" |
| 39 #include "core/html/HTMLMediaElement.h" | 39 #include "core/html/HTMLMediaElement.h" |
| 40 #include "core/inspector/InspectorInstrumentation.h" | 40 #include "core/inspector/InspectorInstrumentation.h" |
| 41 #include "core/layout/LayoutView.h" | |
| 42 #include "core/layout/TextAutosizer.h" | 41 #include "core/layout/TextAutosizer.h" |
| 43 #include "core/page/AutoscrollController.h" | 42 #include "core/page/AutoscrollController.h" |
| 44 #include "core/page/ChromeClient.h" | 43 #include "core/page/ChromeClient.h" |
| 45 #include "core/page/ContextMenuController.h" | 44 #include "core/page/ContextMenuController.h" |
| 46 #include "core/page/DragController.h" | 45 #include "core/page/DragController.h" |
| 47 #include "core/page/FocusController.h" | 46 #include "core/page/FocusController.h" |
| 48 #include "core/page/PointerLockController.h" | 47 #include "core/page/PointerLockController.h" |
| 49 #include "core/page/ValidationMessageClient.h" | 48 #include "core/page/ValidationMessageClient.h" |
| 50 #include "core/page/scrolling/ScrollingCoordinator.h" | 49 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 51 #include "core/paint/PaintLayer.h" | 50 #include "core/paint/PaintLayer.h" |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 { | 572 { |
| 574 } | 573 } |
| 575 | 574 |
| 576 Page::PageClients::~PageClients() | 575 Page::PageClients::~PageClients() |
| 577 { | 576 { |
| 578 } | 577 } |
| 579 | 578 |
| 580 template class CORE_TEMPLATE_EXPORT Supplement<Page>; | 579 template class CORE_TEMPLATE_EXPORT Supplement<Page>; |
| 581 | 580 |
| 582 } // namespace blink | 581 } // namespace blink |
| OLD | NEW |