Chromium Code Reviews| Index: Source/modules/mediastream/RTCCertificate.idl |
| diff --git a/Source/modules/mediastream/RTCSessionDescriptionCallback.idl b/Source/modules/mediastream/RTCCertificate.idl |
| similarity index 88% |
| copy from Source/modules/mediastream/RTCSessionDescriptionCallback.idl |
| copy to Source/modules/mediastream/RTCCertificate.idl |
| index 59ffe441a6758bedde67a1101efbb550a921affc..2863731fab40155bd9b43f244f1a262c53b613fd 100644 |
| --- a/Source/modules/mediastream/RTCSessionDescriptionCallback.idl |
| +++ b/Source/modules/mediastream/RTCCertificate.idl |
| @@ -1,5 +1,5 @@ |
| /* |
| - * Copyright (C) 2012 Google Inc. All rights reserved. |
| + * Copyright (C) 2015 Google Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| @@ -28,7 +28,10 @@ |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| -callback interface RTCSessionDescriptionCallback { |
| - void handleEvent(RTCSessionDescription sdp); |
| +[ |
| + GarbageCollected, |
| + NoInterfaceObject, |
| + RuntimeEnabled=RTCCertificate |
| +] interface RTCCertificate { |
| + readonly attribute Date expires; |
|
jochen (gone - plz use gerrit)
2015/09/15 08:04:18
uh, I see this poor name comes from the spec :-/
hbos_chromium
2015/09/21 16:12:22
Indeed it does. Uhm, I'm not sure... notAfter is o
|
| }; |
| - |