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

Unified Diff: Source/core/frame/DOMWindowBase64.h

Issue 171333003: Pass implementation object to supplemental classes by reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 10 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/core/frame/DOMWindowBase64.h
diff --git a/Source/core/frame/DOMWindowBase64.h b/Source/core/frame/DOMWindowBase64.h
index 21001e0bf625345cded68564b9c97ad3be189722..90b4746e0e1d1905bf4086f2ad05e4cbbdbf0455 100644
--- a/Source/core/frame/DOMWindowBase64.h
+++ b/Source/core/frame/DOMWindowBase64.h
@@ -38,10 +38,11 @@
namespace WebCore {
class ExceptionState;
+class ScriptWrappable;
namespace DOMWindowBase64 {
-String btoa(void*, const String& stringToEncode, ExceptionState&);
-String atob(void*, const String& encodedString, ExceptionState&);
+String btoa(ScriptWrappable&, const String& stringToEncode, ExceptionState&);
+String atob(ScriptWrappable&, const String& encodedString, ExceptionState&);
}
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698