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

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

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (Closed)
Patch Set: Created 3 years, 8 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 #include "core/layout/LayoutBox.h" 95 #include "core/layout/LayoutBox.h"
96 #include "core/page/ContextMenuController.h" 96 #include "core/page/ContextMenuController.h"
97 #include "core/page/Page.h" 97 #include "core/page/Page.h"
98 #include "core/svg/SVGElement.h" 98 #include "core/svg/SVGElement.h"
99 #include "core/svg/graphics/SVGImage.h" 99 #include "core/svg/graphics/SVGImage.h"
100 #include "platform/EventDispatchForbiddenScope.h" 100 #include "platform/EventDispatchForbiddenScope.h"
101 #include "platform/InstanceCounters.h" 101 #include "platform/InstanceCounters.h"
102 #include "platform/RuntimeEnabledFeatures.h" 102 #include "platform/RuntimeEnabledFeatures.h"
103 #include "platform/instrumentation/tracing/TraceEvent.h" 103 #include "platform/instrumentation/tracing/TraceEvent.h"
104 #include "platform/instrumentation/tracing/TracedValue.h" 104 #include "platform/instrumentation/tracing/TracedValue.h"
105 #include "wtf/HashSet.h" 105 #include "platform/wtf/HashSet.h"
106 #include "wtf/Vector.h" 106 #include "platform/wtf/Vector.h"
107 #include "wtf/allocator/Partitions.h" 107 #include "platform/wtf/allocator/Partitions.h"
108 #include "wtf/text/CString.h" 108 #include "platform/wtf/text/CString.h"
109 #include "wtf/text/StringBuilder.h" 109 #include "platform/wtf/text/StringBuilder.h"
110 110
111 namespace blink { 111 namespace blink {
112 112
113 namespace { 113 namespace {
114 114
115 // TODO(crbug.com/545926): Unsafe hack to avoid triggering the 115 // TODO(crbug.com/545926): Unsafe hack to avoid triggering the
116 // ThreadRestrictionVerifier on StringImpl. This should be fixed completely, and 116 // ThreadRestrictionVerifier on StringImpl. This should be fixed completely, and
117 // we should always avoid accessing these strings from the impl thread. 117 // we should always avoid accessing these strings from the impl thread.
118 // Currently code that calls into this method from the impl thread tries to make 118 // Currently code that calls into this method from the impl thread tries to make
119 // sure that the main thread is not running at this time. 119 // sure that the main thread is not running at this time.
(...skipping 2411 matching lines...) Expand 10 before | Expand all | Expand 10 after
2531 if (node) { 2531 if (node) {
2532 std::stringstream stream; 2532 std::stringstream stream;
2533 node->PrintNodePathTo(stream); 2533 node->PrintNodePathTo(stream);
2534 LOG(INFO) << stream.str(); 2534 LOG(INFO) << stream.str();
2535 } else { 2535 } else {
2536 LOG(INFO) << "Cannot showNodePath for <null>"; 2536 LOG(INFO) << "Cannot showNodePath for <null>";
2537 } 2537 }
2538 } 2538 }
2539 2539
2540 #endif 2540 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/NamedNodeMap.h ('k') | third_party/WebKit/Source/core/dom/NodeListsNodeData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698