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

Unified Diff: Source/modules/presentation/PresentationSession.idl

Issue 1290693003: Presentation API: add UMA. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/presentation/PresentationSession.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/presentation/PresentationSession.idl
diff --git a/Source/modules/presentation/PresentationSession.idl b/Source/modules/presentation/PresentationSession.idl
index 493f8ca4ed858ba2222e846e41c141ed8d924a4d..08f6b0574c61260dda5886e76b4b5390ec61c089 100644
--- a/Source/modules/presentation/PresentationSession.idl
+++ b/Source/modules/presentation/PresentationSession.idl
@@ -15,14 +15,14 @@ enum PresentationSessionState {
] interface PresentationSession : EventTarget {
readonly attribute DOMString? id;
readonly attribute PresentationSessionState state;
- void close();
+ [MeasureAs=PresentationSessionClose] void close();
attribute EventHandler onstatechange;
// Communication
attribute BinaryType binaryType;
attribute EventHandler onmessage;
- [RaisesException] void send(DOMString message);
- [RaisesException] void send(Blob data);
- [RaisesException] void send(ArrayBuffer data);
- [RaisesException] void send(ArrayBufferView data);
+ [RaisesException, MeasureAs=PresentationSessionSend] void send(DOMString message);
+ [RaisesException, MeasureAs=PresentationSessionSend] void send(Blob data);
+ [RaisesException, MeasureAs=PresentationSessionSend] void send(ArrayBuffer data);
+ [RaisesException, MeasureAs=PresentationSessionSend] void send(ArrayBufferView data);
};
« no previous file with comments | « Source/modules/presentation/PresentationSession.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698