Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef DOMNodeIds_h | 5 #ifndef DOMNodeIds_h |
| 6 #define DOMNodeIds_h | 6 #define DOMNodeIds_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/dom/Node.h" | 9 #include "core/dom/Node.h" |
| 10 #include "core/dom/WeakIdentifierMap.h" | 10 #include "core/dom/WeakIdentifierMap.h" |
| 11 #include "platform/wtf/Allocator.h" | 11 #include "platform/wtf/Allocator.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 DECLARE_WEAK_IDENTIFIER_MAP(Node); | 15 DECLARE_WEAK_IDENTIFIER_MAP(Node, uint64_t); |
| 16 | 16 |
| 17 class CORE_EXPORT DOMNodeIds { | 17 class CORE_EXPORT DOMNodeIds { |
| 18 STATIC_ONLY(DOMNodeIds); | 18 STATIC_ONLY(DOMNodeIds); |
| 19 | 19 |
| 20 public: | 20 public: |
| 21 static int IdForNode(Node*); | 21 static uint64_t IdForNode(Node*); |
|
wkorman
2017/05/05 20:06:10
Could be worth defining something like 'using Node
chrishtr
2017/05/05 20:46:09
Done.
| |
| 22 static Node* NodeForId(int id); | 22 static Node* NodeForId(uint64_t id); |
| 23 }; | 23 }; |
| 24 | 24 |
| 25 } // namespace blink | 25 } // namespace blink |
| 26 | 26 |
| 27 #endif // DOMNodeIds_h | 27 #endif // DOMNodeIds_h |
| OLD | NEW |