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

Side by Side Diff: third_party/WebKit/Source/core/html/track/vtt/VTTCue.idl

Issue 2015503002: Move TODO(philipj) to TODO(foolip) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013, Opera Software ASA. All rights reserved. 2 * Copyright (c) 2013, Opera Software ASA. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 22 matching lines...) Expand all
33 enum DirectionSetting { "" /* horizontal */, "rl", "lr" }; 33 enum DirectionSetting { "" /* horizontal */, "rl", "lr" };
34 // enum LineAlignSetting { "start", "middle", "end" }; 34 // enum LineAlignSetting { "start", "middle", "end" };
35 // enum PositionAlignSetting { "start", "middle", "end", "auto" }; 35 // enum PositionAlignSetting { "start", "middle", "end", "auto" };
36 enum AlignSetting { "start", "middle", "end", "left", "right" }; 36 enum AlignSetting { "start", "middle", "end", "left", "right" };
37 37
38 [ 38 [
39 Constructor(double startTime, double endTime, DOMString text), 39 Constructor(double startTime, double endTime, DOMString text),
40 ConstructorCallWith=Document, 40 ConstructorCallWith=Document,
41 SetWrapperReferenceFrom=owner, 41 SetWrapperReferenceFrom=owner,
42 ] interface VTTCue : TextTrackCue { 42 ] interface VTTCue : TextTrackCue {
43 // TODO(philipj): regionId has been replaced by a region attribute. 43 // TODO(foolip): regionId has been replaced by a region attribute.
44 [RuntimeEnabled=WebVTTRegions] attribute DOMString regionId; 44 [RuntimeEnabled=WebVTTRegions] attribute DOMString regionId;
45 attribute DirectionSetting vertical; 45 attribute DirectionSetting vertical;
46 attribute boolean snapToLines; 46 attribute boolean snapToLines;
47 attribute (double or AutoKeyword) line; 47 attribute (double or AutoKeyword) line;
48 // attribute LineAlignSetting lineAlign; 48 // attribute LineAlignSetting lineAlign;
49 [RaisesException=Setter] attribute (double or AutoKeyword) position; 49 [RaisesException=Setter] attribute (double or AutoKeyword) position;
50 // attribute PositionAlignSetting positionAlign; 50 // attribute PositionAlignSetting positionAlign;
51 [RaisesException=Setter] attribute double size; 51 [RaisesException=Setter] attribute double size;
52 attribute AlignSetting align; 52 attribute AlignSetting align;
53 attribute DOMString text; 53 attribute DOMString text;
54 DocumentFragment getCueAsHTML(); 54 DocumentFragment getCueAsHTML();
55 }; 55 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp ('k') | third_party/WebKit/Source/core/html/track/vtt/VTTRegion.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698