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

Unified Diff: third_party/WebKit/Source/platform/bindings/V8GlobalValueMap.h

Issue 2843603002: Move ScriptWrappable and dependencies to platform/bindings (Closed)
Patch Set: Rebase and try again Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
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 96%
copy from third_party/WebKit/Source/bindings/core/v8/V8GlobalValueMap.h
copy to third_party/WebKit/Source/platform/bindings/V8GlobalValueMap.h
index db4a2e590f73f2a1039e3c7837ac9cc79e770650..18e4e63291447dee2921f77ebfe4d732874cad4a 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8GlobalValueMap.h
+++ b/third_party/WebKit/Source/platform/bindings/V8GlobalValueMap.h
@@ -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,

Powered by Google App Engine
This is Rietveld 408576698