Chromium Code Reviews| Index: content/common/indexed_db/indexed_db_struct_traits.cc |
| diff --git a/content/common/indexed_db/indexed_db_struct_traits.cc b/content/common/indexed_db/indexed_db_struct_traits.cc |
| index 85d5fe602f7b5def4eb972a15454a2c14e6ad8ee..0fd57a90b4c97f6cb193bc6e15ad26a2fd4e5e83 100644 |
| --- a/content/common/indexed_db/indexed_db_struct_traits.cc |
| +++ b/content/common/indexed_db/indexed_db_struct_traits.cc |
| @@ -246,6 +246,16 @@ bool StructTraits<indexed_db::mojom::DatabaseMetadataDataView, |
| } |
| // static |
| +bool StructTraits<indexed_db::mojom::DataFormatVersionDataView, |
| + content::IndexedDBDataFormatVersion>:: |
| + Read(indexed_db::mojom::DataFormatVersionDataView data, |
| + content::IndexedDBDataFormatVersion* out) { |
| + *out = content::IndexedDBDataFormatVersion(data.v8_version(), |
| + data.blink_version()); |
| + return true; |
| +}; |
|
cmumford
2017/04/03 16:55:02
Delete semicolon.
jbroman
2017/04/04 18:50:38
Done.
|
| + |
| +// static |
| CursorDirection |
| EnumTraits<CursorDirection, blink::WebIDBCursorDirection>::ToMojom( |
| blink::WebIDBCursorDirection input) { |