OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "config.h" |
| 6 #include "core/xml/WindowXSLT.h" |
| 7 |
| 8 #include "core/dom/Document.h" |
| 9 // |
| 10 #include "core/dom/Node.h" |
| 11 // |
| 12 #include "core/frame/LocalDOMWindow.h" |
| 13 |
| 14 namespace blink { |
| 15 |
| 16 void WindowXSLT::replaceDocument(LocalDOMWindow& window, String documentSource,
String contentType, String encodingName) |
| 17 { |
| 18 window.replaceDocument(documentSource, contentType, encodingName); |
| 19 } |
| 20 |
| 21 } // namespace blink |
OLD | NEW |