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

Unified Diff: Source/core/paint/GraphicsContextAnnotator.cpp

Issue 997073004: Move inspector/InspectorNodeIds to dom/DOMNodeIds. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/paint/GraphicsContextAnnotator.cpp
diff --git a/Source/core/paint/GraphicsContextAnnotator.cpp b/Source/core/paint/GraphicsContextAnnotator.cpp
index a762a73ebce89aa2424f73cda04a90c3a8ac4920..b84e3b275e955d9913b1dad936404cf70bab48e1 100644
--- a/Source/core/paint/GraphicsContextAnnotator.cpp
+++ b/Source/core/paint/GraphicsContextAnnotator.cpp
@@ -32,7 +32,7 @@
#include "config.h"
#include "core/paint/GraphicsContextAnnotator.h"
-#include "core/inspector/InspectorNodeIds.h"
+#include "core/dom/DOMNodeIds.h"
#include "core/layout/LayoutObject.h"
#include "core/layout/PaintInfo.h"
#include "platform/graphics/GraphicsContextAnnotation.h"
@@ -126,7 +126,7 @@ void GraphicsContextAnnotator::annotate(const PaintInfo& paintInfo, const Layout
if (mode & AnnotateInspectorId) {
if (Node* ownerNode = object->generatingNode()) {
annotations.append(std::make_pair(AnnotationKeyInspectorNodeId,
- String::number(InspectorNodeIds::idForNode(ownerNode))));
+ String::number(DOMNodeIds::idForNode(ownerNode))));
}
}

Powered by Google App Engine
This is Rietveld 408576698