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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 #include "core/frame/Frame.h" | 43 #include "core/frame/Frame.h" |
44 #include "core/page/FrameTree.h" | 44 #include "core/page/FrameTree.h" |
45 #include "core/frame/FrameView.h" | 45 #include "core/frame/FrameView.h" |
46 #include "core/page/PageConsole.h" | 46 #include "core/page/PageConsole.h" |
47 #include "core/page/PageGroup.h" | 47 #include "core/page/PageGroup.h" |
48 #include "core/page/PageLifecycleNotifier.h" | 48 #include "core/page/PageLifecycleNotifier.h" |
49 #include "core/page/PointerLockController.h" | 49 #include "core/page/PointerLockController.h" |
50 #include "core/page/Settings.h" | 50 #include "core/page/Settings.h" |
51 #include "core/page/ValidationMessageClient.h" | 51 #include "core/page/ValidationMessageClient.h" |
52 #include "core/page/scrolling/ScrollingCoordinator.h" | 52 #include "core/page/scrolling/ScrollingCoordinator.h" |
53 #include "core/plugins/PluginData.h" | |
54 #include "core/rendering/RenderView.h" | 53 #include "core/rendering/RenderView.h" |
55 #include "core/storage/StorageNamespace.h" | 54 #include "core/storage/StorageNamespace.h" |
56 #include "core/workers/SharedWorkerRepositoryClient.h" | 55 #include "core/workers/SharedWorkerRepositoryClient.h" |
| 56 #include "platform/plugins/PluginData.h" |
57 #include "wtf/HashMap.h" | 57 #include "wtf/HashMap.h" |
58 #include "wtf/RefCountedLeakCounter.h" | 58 #include "wtf/RefCountedLeakCounter.h" |
59 #include "wtf/StdLibExtras.h" | 59 #include "wtf/StdLibExtras.h" |
60 #include "wtf/text/Base64.h" | 60 #include "wtf/text/Base64.h" |
61 | 61 |
62 namespace WebCore { | 62 namespace WebCore { |
63 | 63 |
64 static HashSet<Page*>* allPages; | 64 static HashSet<Page*>* allPages; |
65 | 65 |
66 DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, pageCounter, ("Page")); | 66 DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, pageCounter, ("Page")); |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 , inspectorClient(0) | 560 , inspectorClient(0) |
561 , backForwardClient(0) | 561 , backForwardClient(0) |
562 { | 562 { |
563 } | 563 } |
564 | 564 |
565 Page::PageClients::~PageClients() | 565 Page::PageClients::~PageClients() |
566 { | 566 { |
567 } | 567 } |
568 | 568 |
569 } // namespace WebCore | 569 } // namespace WebCore |
OLD | NEW |