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

Side by Side Diff: third_party/WebKit/Source/core/xml/XSLStyleSheetLibxslt.cpp

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * This file is part of the XSL implementation. 2 * This file is part of the XSL implementation.
3 * 3 *
4 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 */ 20 */
21 21
22 #include "core/xml/XSLStyleSheet.h" 22 #include "core/xml/XSLStyleSheet.h"
23 23
24 #include <libxml/uri.h>
25 #include <libxslt/xsltutils.h>
24 #include "core/dom/Document.h" 26 #include "core/dom/Document.h"
25 #include "core/dom/Node.h" 27 #include "core/dom/Node.h"
26 #include "core/dom/TransformSource.h" 28 #include "core/dom/TransformSource.h"
27 #include "core/frame/LocalFrame.h" 29 #include "core/frame/LocalFrame.h"
28 #include "core/xml/XSLImportRule.h" 30 #include "core/xml/XSLImportRule.h"
29 #include "core/xml/XSLTProcessor.h" 31 #include "core/xml/XSLTProcessor.h"
30 #include "core/xml/parser/XMLDocumentParserScope.h" 32 #include "core/xml/parser/XMLDocumentParserScope.h"
31 #include "core/xml/parser/XMLParserInput.h" 33 #include "core/xml/parser/XMLParserInput.h"
32 #include "wtf/text/CString.h" 34 #include "platform/wtf/text/CString.h"
33 #include <libxml/uri.h>
34 #include <libxslt/xsltutils.h>
35 35
36 namespace blink { 36 namespace blink {
37 37
38 XSLStyleSheet::XSLStyleSheet(XSLImportRule* parent_rule, 38 XSLStyleSheet::XSLStyleSheet(XSLImportRule* parent_rule,
39 const String& original_url, 39 const String& original_url,
40 const KURL& final_url) 40 const KURL& final_url)
41 : owner_node_(nullptr), 41 : owner_node_(nullptr),
42 original_url_(original_url), 42 original_url_(original_url),
43 final_url_(final_url), 43 final_url_(final_url),
44 is_disabled_(false), 44 is_disabled_(false),
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 311
312 DEFINE_TRACE(XSLStyleSheet) { 312 DEFINE_TRACE(XSLStyleSheet) {
313 visitor->Trace(owner_node_); 313 visitor->Trace(owner_node_);
314 visitor->Trace(children_); 314 visitor->Trace(children_);
315 visitor->Trace(parent_style_sheet_); 315 visitor->Trace(parent_style_sheet_);
316 visitor->Trace(owner_document_); 316 visitor->Trace(owner_document_);
317 StyleSheet::Trace(visitor); 317 StyleSheet::Trace(visitor);
318 } 318 }
319 319
320 } // namespace blink 320 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/xml/XSLStyleSheet.h ('k') | third_party/WebKit/Source/core/xml/XSLTExtensions.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698