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

Side by Side Diff: Source/core/inspector/DOMPatchSupport.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
« no previous file with comments | « Source/core/inspector/DOMEditor.cpp ('k') | Source/core/inspector/InjectedScript.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 22 matching lines...) Expand all
33 33
34 #include "core/inspector/DOMPatchSupport.h" 34 #include "core/inspector/DOMPatchSupport.h"
35 35
36 #include "HTMLNames.h" 36 #include "HTMLNames.h"
37 #include "core/dom/Attribute.h" 37 #include "core/dom/Attribute.h"
38 #include "core/dom/ContextFeatures.h" 38 #include "core/dom/ContextFeatures.h"
39 #include "core/dom/Document.h" 39 #include "core/dom/Document.h"
40 #include "core/dom/DocumentFragment.h" 40 #include "core/dom/DocumentFragment.h"
41 #include "core/dom/Node.h" 41 #include "core/dom/Node.h"
42 #include "core/html/HTMLDocument.h" 42 #include "core/html/HTMLDocument.h"
43 #include "core/html/HTMLElement.h"
44 #include "core/html/HTMLHeadElement.h"
45 #include "core/html/parser/HTMLDocumentParser.h" 43 #include "core/html/parser/HTMLDocumentParser.h"
46 #include "core/inspector/DOMEditor.h" 44 #include "core/inspector/DOMEditor.h"
47 #include "core/inspector/InspectorHistory.h" 45 #include "core/inspector/InspectorHistory.h"
48 #include "core/xml/parser/XMLDocumentParser.h" 46 #include "core/xml/parser/XMLDocumentParser.h"
49 47
50 #include <wtf/Deque.h> 48 #include <wtf/Deque.h>
51 #include <wtf/HashTraits.h> 49 #include <wtf/HashTraits.h>
52 #include <wtf/RefPtr.h> 50 #include <wtf/RefPtr.h>
53 #include <wtf/SHA1.h> 51 #include <wtf/SHA1.h>
54 #include <wtf/text/Base64.h> 52 #include <wtf/text/Base64.h>
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 void DOMPatchSupport::dumpMap(const ResultMap& map, const String& name) 514 void DOMPatchSupport::dumpMap(const ResultMap& map, const String& name)
517 { 515 {
518 fprintf(stderr, "\n\n"); 516 fprintf(stderr, "\n\n");
519 for (size_t i = 0; i < map.size(); ++i) 517 for (size_t i = 0; i < map.size(); ++i)
520 fprintf(stderr, "%s[%lu]: %s (%p) - [%lu]\n", name.utf8().data(), i, map [i].first ? nodeName(map[i].first->m_node).utf8().data() : "", map[i].first, map [i].second); 518 fprintf(stderr, "%s[%lu]: %s (%p) - [%lu]\n", name.utf8().data(), i, map [i].first ? nodeName(map[i].first->m_node).utf8().data() : "", map[i].first, map [i].second);
521 } 519 }
522 #endif 520 #endif
523 521
524 } // namespace WebCore 522 } // namespace WebCore
525 523
OLDNEW
« no previous file with comments | « Source/core/inspector/DOMEditor.cpp ('k') | Source/core/inspector/InjectedScript.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698