OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 [ | 5 [ |
6 RuntimeEnabled=WebAnimationsAPI, | |
7 NoInterfaceObject, | 6 NoInterfaceObject, |
8 WillBeGarbageCollected | 7 ] interface NavigatorCPU { |
Rik
2014/05/18 23:18:30
This is a strange diff. Is there a conflict?
Daniel Bratell
2014/05/22 12:56:22
Just the system thinking this is a modified copy o
Rik
2014/05/22 13:41:54
OK. The spec changed to the attribute from 'cores'
| |
9 ] interface AnimationEffect { | 8 readonly attribute unsigned long cores; |
10 }; | 9 }; |
OLD | NEW |