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

Side by Side Diff: Source/WebCore/html/track/TextTrackCue.idl

Issue 12251015: Merge 141034 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 10 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
« no previous file with comments | « Source/WebCore/html/track/TextTrack.idl ('k') | Source/WebCore/html/track/TextTrackCueList.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. 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 13 matching lines...) Expand all
24 */ 24 */
25 25
26 [ 26 [
27 Conditional=VIDEO_TRACK, 27 Conditional=VIDEO_TRACK,
28 V8EnabledAtRuntime=webkitVideoTrack, 28 V8EnabledAtRuntime=webkitVideoTrack,
29 JSGenerateToNativeObject, 29 JSGenerateToNativeObject,
30 Constructor(in double startTime, in double endTime, in DOMString text), 30 Constructor(in double startTime, in double endTime, in DOMString text),
31 CallWith=ScriptExecutionContext, 31 CallWith=ScriptExecutionContext,
32 EventTarget, 32 EventTarget,
33 JSCustomMarkFunction, 33 JSCustomMarkFunction,
34 JSCustomIsReachable 34 JSCustomIsReachable,
35 ImplementationLacksVTable
35 ] interface TextTrackCue { 36 ] interface TextTrackCue {
36 readonly attribute TextTrack track; 37 readonly attribute TextTrack track;
37 38
38 attribute DOMString id; 39 attribute DOMString id;
39 attribute double startTime 40 attribute double startTime
40 setter raises (DOMException); 41 setter raises (DOMException);
41 attribute double endTime 42 attribute double endTime
42 setter raises (DOMException); 43 setter raises (DOMException);
43 attribute boolean pauseOnExit; 44 attribute boolean pauseOnExit;
44 45
(...skipping 19 matching lines...) Expand all
64 void addEventListener(in DOMString type, 65 void addEventListener(in DOMString type,
65 in EventListener listener, 66 in EventListener listener,
66 in [Optional] boolean useCapture); 67 in [Optional] boolean useCapture);
67 void removeEventListener(in DOMString type, 68 void removeEventListener(in DOMString type,
68 in EventListener listener, 69 in EventListener listener,
69 in [Optional] boolean useCapture); 70 in [Optional] boolean useCapture);
70 boolean dispatchEvent(in Event evt) 71 boolean dispatchEvent(in Event evt)
71 raises(EventException); 72 raises(EventException);
72 }; 73 };
73 74
OLDNEW
« no previous file with comments | « Source/WebCore/html/track/TextTrack.idl ('k') | Source/WebCore/html/track/TextTrackCueList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698