Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(761)

Side by Side Diff: Source/core/inspector/InspectorDOMStorageAgent.cpp

Issue 15942008: Remove unused includes from core/inspector and core/svg .cpp files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase and address pdr's comments Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDOMDebuggerAgent.cpp ('k') | Source/core/inspector/InspectorDatabaseAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698