Chromium Code Reviews| Index: Source/core/html/track/VTTRegionList.idl |
| diff --git a/Source/core/html/track/TextTrackRegionList.idl b/Source/core/html/track/VTTRegionList.idl |
| similarity index 90% |
| rename from Source/core/html/track/TextTrackRegionList.idl |
| rename to Source/core/html/track/VTTRegionList.idl |
| index b64949acafa93657b3d54985fef121227ecdb755..ff28c5d4f27ed2c48d91d6002193366e2495ff42 100644 |
| --- a/Source/core/html/track/TextTrackRegionList.idl |
| +++ b/Source/core/html/track/VTTRegionList.idl |
| @@ -24,12 +24,11 @@ |
| */ |
| [ |
| - NoInterfaceObject, |
| RuntimeEnabled=VideoTrack, |
| RuntimeEnabled=WebVTTRegions |
|
acolwell GONE FROM CHROMIUM
2013/11/01 19:32:49
Consider adding a , depends_on=VideoTrack for WebV
philipj_slow
2013/11/01 22:06:40
Done in https://codereview.chromium.org/54903008/
|
| -] interface TextTrackRegionList { |
| +] interface VTTRegionList { |
| readonly attribute unsigned long length; |
| - getter TextTrackRegion item(unsigned long index); |
| - TextTrackRegion getRegionById(DOMString id); |
| + getter VTTRegion item(unsigned long index); |
| + VTTRegion getRegionById(DOMString id); |
| }; |