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

Side by Side Diff: Source/core/xml/XSLTProcessorLibxslt.cpp

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Stale refernence to weboriginexport in .gpyi Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/xml/XSLTProcessor.cpp ('k') | Source/core/xml/parser/XMLDocumentParser.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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, 2007, 2008 Apple, Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple, Inc. All rights reserved.
5 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@webkit.org> 5 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@webkit.org>
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 26 matching lines...) Expand all
37 #include "core/page/Page.h" 37 #include "core/page/Page.h"
38 #include "core/page/PageConsole.h" 38 #include "core/page/PageConsole.h"
39 #include "core/xml/XSLStyleSheet.h" 39 #include "core/xml/XSLStyleSheet.h"
40 #include "core/xml/XSLTExtensions.h" 40 #include "core/xml/XSLTExtensions.h"
41 #include "core/xml/XSLTUnicodeSort.h" 41 #include "core/xml/XSLTUnicodeSort.h"
42 #include "core/xml/parser/XMLDocumentParser.h" 42 #include "core/xml/parser/XMLDocumentParser.h"
43 #include "platform/SharedBuffer.h" 43 #include "platform/SharedBuffer.h"
44 #include "platform/network/ResourceError.h" 44 #include "platform/network/ResourceError.h"
45 #include "platform/network/ResourceRequest.h" 45 #include "platform/network/ResourceRequest.h"
46 #include "platform/network/ResourceResponse.h" 46 #include "platform/network/ResourceResponse.h"
47 #include "weborigin/SecurityOrigin.h" 47 #include "platform/weborigin/SecurityOrigin.h"
48 #include "wtf/Assertions.h" 48 #include "wtf/Assertions.h"
49 #include "wtf/Vector.h" 49 #include "wtf/Vector.h"
50 #include "wtf/text/CString.h" 50 #include "wtf/text/CString.h"
51 #include "wtf/text/StringBuffer.h" 51 #include "wtf/text/StringBuffer.h"
52 #include "wtf/unicode/UTF8.h" 52 #include "wtf/unicode/UTF8.h"
53 53
54 namespace WebCore { 54 namespace WebCore {
55 55
56 void XSLTProcessor::genericErrorFunc(void*, const char*, ...) 56 void XSLTProcessor::genericErrorFunc(void*, const char*, ...)
57 { 57 {
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 338
339 sheet->method = origMethod; 339 sheet->method = origMethod;
340 setXSLTLoadCallBack(0, 0, 0); 340 setXSLTLoadCallBack(0, 0, 0);
341 xsltFreeStylesheet(sheet); 341 xsltFreeStylesheet(sheet);
342 m_stylesheet = 0; 342 m_stylesheet = 0;
343 343
344 return success; 344 return success;
345 } 345 }
346 346
347 } // namespace WebCore 347 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/xml/XSLTProcessor.cpp ('k') | Source/core/xml/parser/XMLDocumentParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698