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

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

Issue 2346663004: Moving platform tracing things into platform/tracing. (Closed)
Patch Set: Created 4 years, 3 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 r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 #include "core/html/HTMLSlotElement.h" 87 #include "core/html/HTMLSlotElement.h"
88 #include "core/input/EventHandler.h" 88 #include "core/input/EventHandler.h"
89 #include "core/inspector/InstanceCounters.h" 89 #include "core/inspector/InstanceCounters.h"
90 #include "core/layout/LayoutBox.h" 90 #include "core/layout/LayoutBox.h"
91 #include "core/page/ContextMenuController.h" 91 #include "core/page/ContextMenuController.h"
92 #include "core/page/Page.h" 92 #include "core/page/Page.h"
93 #include "core/svg/SVGElement.h" 93 #include "core/svg/SVGElement.h"
94 #include "core/svg/graphics/SVGImage.h" 94 #include "core/svg/graphics/SVGImage.h"
95 #include "platform/EventDispatchForbiddenScope.h" 95 #include "platform/EventDispatchForbiddenScope.h"
96 #include "platform/RuntimeEnabledFeatures.h" 96 #include "platform/RuntimeEnabledFeatures.h"
97 #include "platform/TraceEvent.h" 97 #include "platform/tracing/TraceEvent.h"
98 #include "platform/TracedValue.h" 98 #include "platform/tracing/TracedValue.h"
99 #include "wtf/HashSet.h" 99 #include "wtf/HashSet.h"
100 #include "wtf/Vector.h" 100 #include "wtf/Vector.h"
101 #include "wtf/allocator/Partitions.h" 101 #include "wtf/allocator/Partitions.h"
102 #include "wtf/text/CString.h" 102 #include "wtf/text/CString.h"
103 #include "wtf/text/StringBuilder.h" 103 #include "wtf/text/StringBuilder.h"
104 104
105 namespace blink { 105 namespace blink {
106 106
107 using namespace HTMLNames; 107 using namespace HTMLNames;
108 108
(...skipping 2303 matching lines...) Expand 10 before | Expand all | Expand 10 after
2412 if (node) { 2412 if (node) {
2413 std::stringstream stream; 2413 std::stringstream stream;
2414 node->printNodePathTo(stream); 2414 node->printNodePathTo(stream);
2415 LOG(INFO) << stream.str(); 2415 LOG(INFO) << stream.str();
2416 } else { 2416 } else {
2417 LOG(INFO) << "Cannot showNodePath for <null>"; 2417 LOG(INFO) << "Cannot showNodePath for <null>";
2418 } 2418 }
2419 } 2419 }
2420 2420
2421 #endif 2421 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698