Chromium Code Reviews| Index: third_party/WebKit/Source/core/testing/InternalDictionary.idl |
| diff --git a/third_party/WebKit/Source/core/testing/InternalDictionary.idl b/third_party/WebKit/Source/core/testing/InternalDictionary.idl |
| index bbdf42874293869cbbcc7434bd88cb6853faa250..982650bd02c893d0d7d09317aa6a9cafd7fdbedd 100644 |
| --- a/third_party/WebKit/Source/core/testing/InternalDictionary.idl |
| +++ b/third_party/WebKit/Source/core/testing/InternalDictionary.idl |
| @@ -8,8 +8,8 @@ dictionary InternalDictionary { |
| long longMember; |
| [Clamp] long longMemberWithClamp; |
| [EnforceRange] long longMemberWithEnforceRange; |
| - // We don't want to add a UseCounter feature for testing, so using KeyboardEventKeyLocation. |
| - [DeprecateAs=KeyboardEventKeyLocation, ImplementedAs=longMember] long deprecateLongMember; |
| + // We don't want to add a UseCounter feature for testing, so using PrefixedStorageInfo. |
| + [DeprecateAs=PrefixedStorageInfo, ImplementedAs=longMember] long deprecateLongMember; |
|
tkent
2016/02/16 23:33:54
ok, anything to be deprecated is acceptable for th
philipj_slow
2016/02/17 01:59:43
Yep, I was a bit surprised to find this. We'll jus
|
| long longMemberWithDefault = 42; |
| long? longOrNullMember; |
| long? longOrNullMemberWithDefault = null; |