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

Side by Side Diff: third_party/WebKit/Source/core/dom/DOMNodeIds.h

Issue 2860293002: Change cc::ElementId to be a uint64_t (Closed)
Patch Set: Merge branch 'master' into secondaryid Created 3 years, 7 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 // 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 using DOMNodeId = uint64_t;
16
17 DECLARE_WEAK_IDENTIFIER_MAP(Node, DOMNodeId);
18
19 static const DOMNodeId kInvalidDOMNodeId = 0;
16 20
17 class CORE_EXPORT DOMNodeIds { 21 class CORE_EXPORT DOMNodeIds {
18 STATIC_ONLY(DOMNodeIds); 22 STATIC_ONLY(DOMNodeIds);
19 23
20 public: 24 public:
21 static int IdForNode(Node*); 25 static DOMNodeId IdForNode(Node*);
22 static Node* NodeForId(int id); 26 static Node* NodeForId(DOMNodeId);
23 }; 27 };
24 28
25 } // namespace blink 29 } // namespace blink
26 30
27 #endif // DOMNodeIds_h 31 #endif // DOMNodeIds_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698