Index: Source/core/xml/WindowXSLT.cpp |
diff --git a/Source/core/xml/WindowXSLT.cpp b/Source/core/xml/WindowXSLT.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e1af11280ec9e3a1a09e3dfef55882ee48b9ff54 |
--- /dev/null |
+++ b/Source/core/xml/WindowXSLT.cpp |
@@ -0,0 +1,21 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "config.h" |
+#include "core/xml/WindowXSLT.h" |
+ |
+#include "core/dom/Document.h" |
+// |
+#include "core/dom/Node.h" |
+// |
+#include "core/frame/LocalDOMWindow.h" |
+ |
+namespace blink { |
+ |
+void WindowXSLT::replaceDocument(LocalDOMWindow& window, String documentSource, String contentType, String encodingName) |
+{ |
+ window.replaceDocument(documentSource, contentType, encodingName); |
+} |
+ |
+} // namespace blink |