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

Unified Diff: Source/WebCore/html/HTMLDocument.idl

Issue 13799007: Support for selective DOM activity logging, based on IDL attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed two superfluous in attributes in the IDL. Created 7 years, 8 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
Index: Source/WebCore/html/HTMLDocument.idl
diff --git a/Source/WebCore/html/HTMLDocument.idl b/Source/WebCore/html/HTMLDocument.idl
index 7fdcf55c9fd653c46e17726c5e5c9cff0fe7aecd..9bffa83cdf0c6589c8a12777d2a766dc3b9d6011 100644
--- a/Source/WebCore/html/HTMLDocument.idl
+++ b/Source/WebCore/html/HTMLDocument.idl
@@ -25,8 +25,8 @@
] interface HTMLDocument : Document {
[Custom] void open();
void close();
- [Custom] void write([Optional=DefaultIsUndefined] DOMString text);
- [Custom] void writeln([Optional=DefaultIsUndefined] DOMString text);
+ [Custom, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void write([Optional=DefaultIsUndefined] DOMString text);
+ [Custom, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds] void writeln([Optional=DefaultIsUndefined] DOMString text);
readonly attribute HTMLCollection embeds;
readonly attribute HTMLCollection plugins;

Powered by Google App Engine
This is Rietveld 408576698