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

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

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/xml/XMLHttpRequest.h ('k') | Source/core/xml/XMLHttpRequestException.h » ('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
11 * version 2 of the License, or (at your option) any later version. 11 * version 2 of the License, or (at your option) any later version.
12 * 12 *
13 * This library is distributed in the hope that it will be useful, 13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details. 16 * Lesser General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU Lesser General Public 18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software 19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U SA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U SA
21 */ 21 */
22 22
23 #include "config.h" 23 #include "config.h"
24 #include "XMLHttpRequest.h" 24 #include "XMLHttpRequest.h"
25 25
26 #include "Blob.h" 26 #include "Blob.h"
27 #include "ContextFeatures.h"
28 #include "DOMFormData.h" 27 #include "DOMFormData.h"
29 #include "DOMImplementation.h"
30 #include "Event.h"
31 #include "EventException.h"
32 #include "EventListener.h"
33 #include "EventNames.h"
34 #include "ExceptionCode.h"
35 #include "File.h" 28 #include "File.h"
36 #include "HTMLDocument.h" 29 #include "HTMLDocument.h"
37 #include "InspectorInstrumentation.h" 30 #include "InspectorInstrumentation.h"
38 #include "ScriptCallStack.h" 31 #include "ScriptCallStack.h"
39 #include "ScriptController.h" 32 #include "ScriptController.h"
40 #include "ScriptProfile.h" 33 #include "ScriptProfile.h"
41 #include "WebCoreMemoryInstrumentation.h"
42 #include "XMLHttpRequestException.h" 34 #include "XMLHttpRequestException.h"
43 #include "XMLHttpRequestProgressEvent.h" 35 #include "XMLHttpRequestProgressEvent.h"
44 #include "XMLHttpRequestUpload.h" 36 #include "XMLHttpRequestUpload.h"
37 #include "core/dom/ContextFeatures.h"
38 #include "core/dom/DOMImplementation.h"
39 #include "core/dom/Event.h"
40 #include "core/dom/EventException.h"
41 #include "core/dom/EventListener.h"
42 #include "core/dom/EventNames.h"
43 #include "core/dom/ExceptionCode.h"
44 #include "core/dom/WebCoreMemoryInstrumentation.h"
45 #include "core/editing/markup.h" 45 #include "core/editing/markup.h"
46 #include "core/loader/CrossOriginAccessControl.h" 46 #include "core/loader/CrossOriginAccessControl.h"
47 #include "core/loader/TextResourceDecoder.h" 47 #include "core/loader/TextResourceDecoder.h"
48 #include "core/loader/ThreadableLoader.h" 48 #include "core/loader/ThreadableLoader.h"
49 #include "core/loader/cache/CachedResourceRequestInitiators.h" 49 #include "core/loader/cache/CachedResourceRequestInitiators.h"
50 #include "core/loader/cache/MemoryCache.h" 50 #include "core/loader/cache/MemoryCache.h"
51 #include "core/page/ContentSecurityPolicy.h" 51 #include "core/page/ContentSecurityPolicy.h"
52 #include "core/page/SecurityOrigin.h" 52 #include "core/page/SecurityOrigin.h"
53 #include "core/page/Settings.h" 53 #include "core/page/Settings.h"
54 #include "core/platform/HistogramSupport.h" 54 #include "core/platform/HistogramSupport.h"
(...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after
1290 info.addMember(m_responseDocument, "responseDocument"); 1290 info.addMember(m_responseDocument, "responseDocument");
1291 info.addMember(m_binaryResponseBuilder, "binaryResponseBuilder"); 1291 info.addMember(m_binaryResponseBuilder, "binaryResponseBuilder");
1292 info.addMember(m_responseArrayBuffer, "responseArrayBuffer"); 1292 info.addMember(m_responseArrayBuffer, "responseArrayBuffer");
1293 info.addMember(m_lastSendURL, "lastSendURL"); 1293 info.addMember(m_lastSendURL, "lastSendURL");
1294 info.addMember(m_eventTargetData, "eventTargetData"); 1294 info.addMember(m_eventTargetData, "eventTargetData");
1295 info.addMember(m_progressEventThrottle, "progressEventThrottle"); 1295 info.addMember(m_progressEventThrottle, "progressEventThrottle");
1296 info.addMember(m_securityOrigin, "securityOrigin"); 1296 info.addMember(m_securityOrigin, "securityOrigin");
1297 } 1297 }
1298 1298
1299 } // namespace WebCore 1299 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/xml/XMLHttpRequest.h ('k') | Source/core/xml/XMLHttpRequestException.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698