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

Unified Diff: Source/core/page/WindowBase64.idl

Issue 19576002: Make atob() / btoa() argument non optional (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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/page/Window.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/WindowBase64.idl
diff --git a/Source/modules/indexeddb/WindowIndexedDatabase.idl b/Source/core/page/WindowBase64.idl
similarity index 84%
copy from Source/modules/indexeddb/WindowIndexedDatabase.idl
copy to Source/core/page/WindowBase64.idl
index 3823e4f2a5e7402f845bb82fcbbbaa30ce0a95e6..40b1ae642e901fc8a86a39b9e9f29b9881c90158 100644
--- a/Source/modules/indexeddb/WindowIndexedDatabase.idl
+++ b/Source/core/page/WindowBase64.idl
@@ -1,6 +1,7 @@
/*
* Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
* Copyright (C) 2011 Google Inc. All rights reserved.
+ * Copyright (C) 2013 Samsung Electronics. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -25,9 +26,8 @@
*/
[
- ImplementedAs=DOMWindowIndexedDatabase
-] partial interface Window {
- [ImplementedAs=indexedDB,MeasureAs=PrefixedIndexedDB] readonly attribute IDBFactory webkitIndexedDB;
-
- [MeasureAs=UnprefixedIndexedDB] readonly attribute IDBFactory indexedDB;
+ NoInterfaceObject
+] interface WindowBase64 {
+ [RaisesException] DOMString atob(DOMString string);
+ [RaisesException] DOMString btoa(DOMString string);
};
« no previous file with comments | « Source/core/page/Window.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698