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

Side by Side Diff: Source/core/xmlhttprequest/XMLHttpRequest.cpp

Issue 1295073002: Move serializer related files in core/editing/ related files into core/editing/serializers/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-17T15:24:31 Rebase for Source/web/WebPageSerializerImpl.cpp Created 5 years, 4 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/XSLTProcessorLibxslt.cpp ('k') | Source/web/WebLocalFrameImpl.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 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2005-2007 Alexey Proskuryakov <ap@webkit.org> 3 * Copyright (C) 2005-2007 Alexey Proskuryakov <ap@webkit.org>
4 * Copyright (C) 2007, 2008 Julien Chaffraix <jchaffraix@webkit.org> 4 * Copyright (C) 2007, 2008 Julien Chaffraix <jchaffraix@webkit.org>
5 * Copyright (C) 2008, 2011 Google Inc. All rights reserved. 5 * Copyright (C) 2008, 2011 Google Inc. All rights reserved.
6 * Copyright (C) 2012 Intel Corporation 6 * Copyright (C) 2012 Intel Corporation
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 19 matching lines...) Expand all
30 #include "core/dom/DOMArrayBuffer.h" 30 #include "core/dom/DOMArrayBuffer.h"
31 #include "core/dom/DOMArrayBufferView.h" 31 #include "core/dom/DOMArrayBufferView.h"
32 #include "core/dom/DOMException.h" 32 #include "core/dom/DOMException.h"
33 #include "core/dom/DOMImplementation.h" 33 #include "core/dom/DOMImplementation.h"
34 #include "core/dom/DOMTypedArray.h" 34 #include "core/dom/DOMTypedArray.h"
35 #include "core/dom/DocumentInit.h" 35 #include "core/dom/DocumentInit.h"
36 #include "core/dom/DocumentParser.h" 36 #include "core/dom/DocumentParser.h"
37 #include "core/dom/ExceptionCode.h" 37 #include "core/dom/ExceptionCode.h"
38 #include "core/dom/ExecutionContext.h" 38 #include "core/dom/ExecutionContext.h"
39 #include "core/dom/XMLDocument.h" 39 #include "core/dom/XMLDocument.h"
40 #include "core/editing/Serialization.h" 40 #include "core/editing/serializers/Serialization.h"
41 #include "core/events/Event.h" 41 #include "core/events/Event.h"
42 #include "core/fetch/CrossOriginAccessControl.h" 42 #include "core/fetch/CrossOriginAccessControl.h"
43 #include "core/fetch/FetchInitiatorTypeNames.h" 43 #include "core/fetch/FetchInitiatorTypeNames.h"
44 #include "core/fetch/FetchUtils.h" 44 #include "core/fetch/FetchUtils.h"
45 #include "core/fetch/ResourceLoaderOptions.h" 45 #include "core/fetch/ResourceLoaderOptions.h"
46 #include "core/fileapi/Blob.h" 46 #include "core/fileapi/Blob.h"
47 #include "core/fileapi/File.h" 47 #include "core/fileapi/File.h"
48 #include "core/fileapi/FileReaderLoader.h" 48 #include "core/fileapi/FileReaderLoader.h"
49 #include "core/fileapi/FileReaderLoaderClient.h" 49 #include "core/fileapi/FileReaderLoaderClient.h"
50 #include "core/frame/Settings.h" 50 #include "core/frame/Settings.h"
(...skipping 1642 matching lines...) Expand 10 before | Expand all | Expand 10 after
1693 visitor->trace(m_responseDocumentParser); 1693 visitor->trace(m_responseDocumentParser);
1694 visitor->trace(m_progressEventThrottle); 1694 visitor->trace(m_progressEventThrottle);
1695 visitor->trace(m_upload); 1695 visitor->trace(m_upload);
1696 visitor->trace(m_blobLoader); 1696 visitor->trace(m_blobLoader);
1697 XMLHttpRequestEventTarget::trace(visitor); 1697 XMLHttpRequestEventTarget::trace(visitor);
1698 DocumentParserClient::trace(visitor); 1698 DocumentParserClient::trace(visitor);
1699 ActiveDOMObject::trace(visitor); 1699 ActiveDOMObject::trace(visitor);
1700 } 1700 }
1701 1701
1702 } // namespace blink 1702 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/xml/XSLTProcessorLibxslt.cpp ('k') | Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698