| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Samsung Electronics. All rights reserved. | 3 * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #include "config.h" | 30 #include "config.h" |
| 31 #include "InspectorDOMStorageAgent.h" | 31 #include "InspectorDOMStorageAgent.h" |
| 32 | 32 |
| 33 #include "DOMWindow.h" |
| 33 #include "Database.h" | 34 #include "Database.h" |
| 34 #include "DOMWindow.h" | |
| 35 #include "Document.h" | 35 #include "Document.h" |
| 36 #include "ExceptionCode.h" | 36 #include "ExceptionCode.h" |
| 37 #include "ExceptionCodeDescription.h" | 37 #include "ExceptionCodeDescription.h" |
| 38 #include "Frame.h" | 38 #include "Frame.h" |
| 39 #include "InspectorFrontend.h" | 39 #include "InspectorFrontend.h" |
| 40 #include "InspectorPageAgent.h" | 40 #include "InspectorPageAgent.h" |
| 41 #include "InspectorState.h" | 41 #include "InspectorState.h" |
| 42 #include "InspectorValues.h" | 42 #include "InspectorValues.h" |
| 43 #include "InstrumentingAgents.h" | 43 #include "InstrumentingAgents.h" |
| 44 #include "Page.h" | 44 #include "Page.h" |
| 45 #include "PageGroup.h" | 45 #include "PageGroup.h" |
| 46 #include "SecurityOrigin.h" | 46 #include "SecurityOrigin.h" |
| 47 #include "Storage.h" | |
| 48 #include "StorageArea.h" | |
| 49 #include "StorageNamespace.h" | |
| 50 #include "VoidCallback.h" | 47 #include "VoidCallback.h" |
| 51 #include "WebCoreMemoryInstrumentation.h" | 48 #include "WebCoreMemoryInstrumentation.h" |
| 49 #include "core/storage/Storage.h" |
| 50 #include "core/storage/StorageArea.h" |
| 51 #include "core/storage/StorageNamespace.h" |
| 52 | 52 |
| 53 #include <wtf/MemoryInstrumentationHashMap.h> | 53 #include <wtf/MemoryInstrumentationHashMap.h> |
| 54 #include <wtf/Vector.h> | 54 #include <wtf/Vector.h> |
| 55 | 55 |
| 56 namespace WebCore { | 56 namespace WebCore { |
| 57 | 57 |
| 58 namespace DOMStorageAgentState { | 58 namespace DOMStorageAgentState { |
| 59 static const char domStorageAgentEnabled[] = "domStorageAgentEnabled"; | 59 static const char domStorageAgentEnabled[] = "domStorageAgentEnabled"; |
| 60 }; | 60 }; |
| 61 | 61 |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 240 |
| 241 void InspectorDOMStorageAgent::reportMemoryUsage(MemoryObjectInfo* memoryObjectI
nfo) const | 241 void InspectorDOMStorageAgent::reportMemoryUsage(MemoryObjectInfo* memoryObjectI
nfo) const |
| 242 { | 242 { |
| 243 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::InspectorDO
MStorageAgent); | 243 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::InspectorDO
MStorageAgent); |
| 244 InspectorBaseAgent<InspectorDOMStorageAgent>::reportMemoryUsage(memoryObject
Info); | 244 InspectorBaseAgent<InspectorDOMStorageAgent>::reportMemoryUsage(memoryObject
Info); |
| 245 info.addWeakPointer(m_frontend); | 245 info.addWeakPointer(m_frontend); |
| 246 } | 246 } |
| 247 | 247 |
| 248 } // namespace WebCore | 248 } // namespace WebCore |
| 249 | 249 |
| OLD | NEW |