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

Unified Diff: Source/core/frame/Window.idl

Issue 361883004: Replace many [TreatReturnedNullStringAs=Null] with nullable DOMString (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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/core/dom/URL.idl ('k') | Source/core/html/canvas/WebGLDebugShaders.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/Window.idl
diff --git a/Source/core/frame/Window.idl b/Source/core/frame/Window.idl
index 311fa7cf4ae6b0e58d45937aa25cfaa3eef72bd4..b0020e85a47ead12b96b84fb8fc51b508a998e0d 100644
--- a/Source/core/frame/Window.idl
+++ b/Source/core/frame/Window.idl
@@ -70,8 +70,8 @@
void alert();
void alert(DOMString message);
boolean confirm(optional DOMString message = null);
- [TreatReturnedNullStringAs=Null] DOMString prompt(optional DOMString message = null,
- optional DOMString defaultValue = null);
+ DOMString? prompt(optional DOMString message = null,
haraken 2014/07/01 11:16:03 Just to help me understand: How did we decide to w
+ optional DOMString defaultValue = null);
boolean find([Default=Undefined] optional DOMString string,
[Default=Undefined] optional boolean caseSensitive,
« no previous file with comments | « Source/core/dom/URL.idl ('k') | Source/core/html/canvas/WebGLDebugShaders.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698