| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #include "RenderArena.h" | 66 #include "RenderArena.h" |
| 67 #include "RenderTheme.h" | 67 #include "RenderTheme.h" |
| 68 #include "RenderView.h" | 68 #include "RenderView.h" |
| 69 #include "RenderWidget.h" | 69 #include "RenderWidget.h" |
| 70 #include "RuntimeEnabledFeatures.h" | 70 #include "RuntimeEnabledFeatures.h" |
| 71 #include "SchemeRegistry.h" | 71 #include "SchemeRegistry.h" |
| 72 #include "ScriptController.h" | 72 #include "ScriptController.h" |
| 73 #include "ScrollingCoordinator.h" | 73 #include "ScrollingCoordinator.h" |
| 74 #include "Settings.h" | 74 #include "Settings.h" |
| 75 #include "SharedBuffer.h" | 75 #include "SharedBuffer.h" |
| 76 #include "StorageArea.h" | |
| 77 #include "StorageNamespace.h" | |
| 78 #include "TextResourceDecoder.h" | 76 #include "TextResourceDecoder.h" |
| 79 #include "VisitedLinkState.h" | 77 #include "VisitedLinkState.h" |
| 80 #include "VoidCallback.h" | 78 #include "VoidCallback.h" |
| 81 #include "WebCoreMemoryInstrumentation.h" | 79 #include "WebCoreMemoryInstrumentation.h" |
| 82 #include "Widget.h" | 80 #include "Widget.h" |
| 81 #include "core/storage/StorageArea.h" |
| 82 #include "core/storage/StorageNamespace.h" |
| 83 #include <wtf/HashMap.h> | 83 #include <wtf/HashMap.h> |
| 84 #include <wtf/RefCountedLeakCounter.h> | 84 #include <wtf/RefCountedLeakCounter.h> |
| 85 #include <wtf/StdLibExtras.h> | 85 #include <wtf/StdLibExtras.h> |
| 86 #include <wtf/text/Base64.h> | 86 #include <wtf/text/Base64.h> |
| 87 #include <wtf/text/StringHash.h> | 87 #include <wtf/text/StringHash.h> |
| 88 | 88 |
| 89 namespace WebCore { | 89 namespace WebCore { |
| 90 | 90 |
| 91 static HashSet<Page*>* allPages; | 91 static HashSet<Page*>* allPages; |
| 92 | 92 |
| (...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1223 , inspectorClient(0) | 1223 , inspectorClient(0) |
| 1224 , plugInClient(0) | 1224 , plugInClient(0) |
| 1225 { | 1225 { |
| 1226 } | 1226 } |
| 1227 | 1227 |
| 1228 Page::PageClients::~PageClients() | 1228 Page::PageClients::~PageClients() |
| 1229 { | 1229 { |
| 1230 } | 1230 } |
| 1231 | 1231 |
| 1232 } // namespace WebCore | 1232 } // namespace WebCore |
| OLD | NEW |