| Index: third_party/WebKit/Source/platform/bindings/V8GlobalValueMap.h
 | 
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8GlobalValueMap.h b/third_party/WebKit/Source/platform/bindings/V8GlobalValueMap.h
 | 
| similarity index 95%
 | 
| copy from third_party/WebKit/Source/bindings/core/v8/V8GlobalValueMap.h
 | 
| copy to third_party/WebKit/Source/platform/bindings/V8GlobalValueMap.h
 | 
| index db4a2e590f73f2a1039e3c7837ac9cc79e770650..53e6d4812dcf2fe513b8f7fc05fb31be9e351d9a 100644
 | 
| --- a/third_party/WebKit/Source/bindings/core/v8/V8GlobalValueMap.h
 | 
| +++ b/third_party/WebKit/Source/platform/bindings/V8GlobalValueMap.h
 | 
| @@ -1,4 +1,4 @@
 | 
| -// Copyright 2015 The Chromium Authors. All rights reserved.
 | 
| +// Copyright 2017 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.
 | 
|  
 | 
| @@ -21,8 +21,8 @@ namespace blink {
 | 
|   * If so, entries will be removed from the map as the weak references are
 | 
|   * collected.
 | 
|   */
 | 
| -template <class KeyType,
 | 
| -          class ValueType,
 | 
| +template <typename KeyType,
 | 
| +          typename ValueType,
 | 
|            v8::PersistentContainerCallbackType type>
 | 
|  class V8GlobalValueMapTraits {
 | 
|    STATIC_ONLY(V8GlobalValueMapTraits);
 | 
| @@ -98,8 +98,8 @@ class V8GlobalValueMapTraits {
 | 
|   * A map for safely storing persistent V8 values, based on
 | 
|   * v8::GlobalValueMap.
 | 
|   */
 | 
| -template <class KeyType,
 | 
| -          class ValueType,
 | 
| +template <typename KeyType,
 | 
| +          typename ValueType,
 | 
|            v8::PersistentContainerCallbackType type>
 | 
|  class V8GlobalValueMap : public v8::GlobalValueMap<
 | 
|                               KeyType,
 | 
| 
 |