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

Side by Side Diff: third_party/WebKit/Source/core/dom/Node.cpp

Issue 2391383002: Moving platform tracing things into platform/tracing. (Closed)
Patch Set: Created 4 years, 2 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
6 * rights reserved. 6 * rights reserved.
7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * 10 *
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 #include "core/html/HTMLSlotElement.h" 89 #include "core/html/HTMLSlotElement.h"
90 #include "core/input/EventHandler.h" 90 #include "core/input/EventHandler.h"
91 #include "core/inspector/InstanceCounters.h" 91 #include "core/inspector/InstanceCounters.h"
92 #include "core/layout/LayoutBox.h" 92 #include "core/layout/LayoutBox.h"
93 #include "core/page/ContextMenuController.h" 93 #include "core/page/ContextMenuController.h"
94 #include "core/page/Page.h" 94 #include "core/page/Page.h"
95 #include "core/svg/SVGElement.h" 95 #include "core/svg/SVGElement.h"
96 #include "core/svg/graphics/SVGImage.h" 96 #include "core/svg/graphics/SVGImage.h"
97 #include "platform/EventDispatchForbiddenScope.h" 97 #include "platform/EventDispatchForbiddenScope.h"
98 #include "platform/RuntimeEnabledFeatures.h" 98 #include "platform/RuntimeEnabledFeatures.h"
99 #include "platform/TraceEvent.h" 99 #include "platform/tracing/TraceEvent.h"
100 #include "platform/TracedValue.h" 100 #include "platform/tracing/TracedValue.h"
101 #include "wtf/HashSet.h" 101 #include "wtf/HashSet.h"
102 #include "wtf/Vector.h" 102 #include "wtf/Vector.h"
103 #include "wtf/allocator/Partitions.h" 103 #include "wtf/allocator/Partitions.h"
104 #include "wtf/text/CString.h" 104 #include "wtf/text/CString.h"
105 #include "wtf/text/StringBuilder.h" 105 #include "wtf/text/StringBuilder.h"
106 106
107 namespace blink { 107 namespace blink {
108 108
109 using namespace HTMLNames; 109 using namespace HTMLNames;
110 110
(...skipping 2353 matching lines...) Expand 10 before | Expand all | Expand 10 after
2464 if (node) { 2464 if (node) {
2465 std::stringstream stream; 2465 std::stringstream stream;
2466 node->printNodePathTo(stream); 2466 node->printNodePathTo(stream);
2467 LOG(INFO) << stream.str(); 2467 LOG(INFO) << stream.str();
2468 } else { 2468 } else {
2469 LOG(INFO) << "Cannot showNodePath for <null>"; 2469 LOG(INFO) << "Cannot showNodePath for <null>";
2470 } 2470 }
2471 } 2471 }
2472 2472
2473 #endif 2473 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698