1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_STYLE_ORDERED_NAMED_GRID_LINES_H_
6 #define THIRD_PARTY_BLINK_RENDERER_CORE_STYLE_ORDERED_NAMED_GRID_LINES_H_
7 
8 #include "third_party/blink/renderer/platform/wtf/hash_map.h"
9 #include "third_party/blink/renderer/platform/wtf/hash_traits.h"
10 #include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
11 #include "third_party/blink/renderer/platform/wtf/vector.h"
12 
13 namespace blink {
14 
15 using OrderedNamedGridLines =
16     HashMap<size_t,
17             Vector<String>,
18             WTF::IntHash<size_t>,
19             WTF::UnsignedWithZeroKeyHashTraits<size_t>>;
20 
21 }  // namespace blink
22 
23 #endif  // THIRD_PARTY_BLINK_RENDERER_CORE_STYLE_ORDERED_NAMED_GRID_LINES_H_
24