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

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

Issue 16282004: Remove unused includes from various .cpp files in core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: re-add HTMLFormElement to EmptyClients for windows Created 7 years, 6 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
« 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 23 matching lines...) Expand all
34 #include <wtf/unicode/UTF8.h> 34 #include <wtf/unicode/UTF8.h>
35 #include <wtf/Vector.h> 35 #include <wtf/Vector.h>
36 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
37 #include "core/dom/TransformSource.h" 37 #include "core/dom/TransformSource.h"
38 #include "core/editing/markup.h" 38 #include "core/editing/markup.h"
39 #include "core/loader/cache/CachedResourceLoader.h" 39 #include "core/loader/cache/CachedResourceLoader.h"
40 #include "core/page/Frame.h" 40 #include "core/page/Frame.h"
41 #include "core/page/Page.h" 41 #include "core/page/Page.h"
42 #include "core/page/PageConsole.h" 42 #include "core/page/PageConsole.h"
43 #include "core/platform/network/ResourceError.h" 43 #include "core/platform/network/ResourceError.h"
44 #include "core/platform/network/ResourceHandle.h"
45 #include "core/platform/network/ResourceRequest.h" 44 #include "core/platform/network/ResourceRequest.h"
46 #include "core/platform/network/ResourceResponse.h" 45 #include "core/platform/network/ResourceResponse.h"
47 #include "core/xml/XSLStyleSheet.h" 46 #include "core/xml/XSLStyleSheet.h"
48 #include "core/xml/XSLTExtensions.h" 47 #include "core/xml/XSLTExtensions.h"
49 #include "core/xml/XSLTUnicodeSort.h" 48 #include "core/xml/XSLTUnicodeSort.h"
50 #include "core/xml/parser/XMLDocumentParser.h" 49 #include "core/xml/parser/XMLDocumentParser.h"
51 #include "weborigin/SecurityOrigin.h" 50 #include "weborigin/SecurityOrigin.h"
52 51
53 namespace WebCore { 52 namespace WebCore {
54 53
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 342
344 sheet->method = origMethod; 343 sheet->method = origMethod;
345 setXSLTLoadCallBack(0, 0, 0); 344 setXSLTLoadCallBack(0, 0, 0);
346 xsltFreeStylesheet(sheet); 345 xsltFreeStylesheet(sheet);
347 m_stylesheet = 0; 346 m_stylesheet = 0;
348 347
349 return success; 348 return success;
350 } 349 }
351 350
352 } // namespace WebCore 351 } // 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