blob: 33ec463d12795de3453d73ed5c73c700fbd65494 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "config.h"
#include "core/inspector/InspectorNodeIds.h"
#include "core/dom/WeakNodeMap.h"
namespace WebCore {
static WeakNodeMap& nodeIds()
{
DEFINE_STATIC_LOCAL(WeakNodeMap, self, ());
return self;
}
int InspectorNodeIds::idForNode(Node* node)
{
static int s_nextNodeId = 1;
WeakNodeMap& ids = nodeIds();
int result = ids.value(node);
if (!result) {
result = s_nextNodeId++;
ids.put(node, result);
}
return result;
}
}