| 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 17 matching lines...) Expand all Loading... |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #include "config.h" | 30 #include "config.h" |
| 31 #include "core/inspector/InspectorDOMStorageAgent.h" | 31 #include "core/inspector/InspectorDOMStorageAgent.h" |
| 32 | 32 |
| 33 #include "DOMException.h" | 33 #include "DOMException.h" |
| 34 #include "InspectorFrontend.h" | 34 #include "InspectorFrontend.h" |
| 35 #include "core/dom/Document.h" | 35 #include "core/dom/Document.h" |
| 36 #include "core/dom/ExceptionCode.h" | 36 #include "core/dom/ExceptionCode.h" |
| 37 #include "core/dom/WebCoreMemoryInstrumentation.h" | 37 #include "core/dom/WebCoreMemoryInstrumentation.h" |
| 38 #include "core/html/VoidCallback.h" | |
| 39 #include "core/inspector/InspectorPageAgent.h" | 38 #include "core/inspector/InspectorPageAgent.h" |
| 40 #include "core/inspector/InspectorState.h" | 39 #include "core/inspector/InspectorState.h" |
| 41 #include "core/inspector/InspectorValues.h" | 40 #include "core/inspector/InspectorValues.h" |
| 42 #include "core/inspector/InstrumentingAgents.h" | 41 #include "core/inspector/InstrumentingAgents.h" |
| 43 #include "core/page/DOMWindow.h" | 42 #include "core/page/DOMWindow.h" |
| 44 #include "core/page/Frame.h" | 43 #include "core/page/Frame.h" |
| 45 #include "core/page/Page.h" | 44 #include "core/page/Page.h" |
| 46 #include "core/page/PageGroup.h" | 45 #include "core/page/PageGroup.h" |
| 47 #include "core/storage/Storage.h" | 46 #include "core/storage/Storage.h" |
| 48 #include "core/storage/StorageArea.h" | 47 #include "core/storage/StorageArea.h" |
| 49 #include "core/storage/StorageNamespace.h" | 48 #include "core/storage/StorageNamespace.h" |
| 50 #include "modules/webdatabase/Database.h" | |
| 51 #include "weborigin/SecurityOrigin.h" | 49 #include "weborigin/SecurityOrigin.h" |
| 52 | 50 |
| 53 #include <wtf/MemoryInstrumentationHashMap.h> | 51 #include <wtf/MemoryInstrumentationHashMap.h> |
| 54 #include <wtf/Vector.h> | 52 #include <wtf/Vector.h> |
| 55 | 53 |
| 56 namespace WebCore { | 54 namespace WebCore { |
| 57 | 55 |
| 58 namespace DOMStorageAgentState { | 56 namespace DOMStorageAgentState { |
| 59 static const char domStorageAgentEnabled[] = "domStorageAgentEnabled"; | 57 static const char domStorageAgentEnabled[] = "domStorageAgentEnabled"; |
| 60 }; | 58 }; |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 238 |
| 241 void InspectorDOMStorageAgent::reportMemoryUsage(MemoryObjectInfo* memoryObjectI
nfo) const | 239 void InspectorDOMStorageAgent::reportMemoryUsage(MemoryObjectInfo* memoryObjectI
nfo) const |
| 242 { | 240 { |
| 243 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::InspectorDO
MStorageAgent); | 241 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::InspectorDO
MStorageAgent); |
| 244 InspectorBaseAgent<InspectorDOMStorageAgent>::reportMemoryUsage(memoryObject
Info); | 242 InspectorBaseAgent<InspectorDOMStorageAgent>::reportMemoryUsage(memoryObject
Info); |
| 245 info.addWeakPointer(m_frontend); | 243 info.addWeakPointer(m_frontend); |
| 246 } | 244 } |
| 247 | 245 |
| 248 } // namespace WebCore | 246 } // namespace WebCore |
| 249 | 247 |
| OLD | NEW |