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

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

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu 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
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 "CrossOriginAccessControl.h" 30 #include "CrossOriginAccessControl.h"
31 #include "DOMFormData.h" 31 #include "DOMFormData.h"
32 #include "DOMImplementation.h" 32 #include "DOMImplementation.h"
33 #include "Event.h" 33 #include "Event.h"
34 #include "EventException.h" 34 #include "EventException.h"
35 #include "EventListener.h" 35 #include "EventListener.h"
36 #include "EventNames.h" 36 #include "EventNames.h"
37 #include "ExceptionCode.h" 37 #include "ExceptionCode.h"
38 #include "File.h" 38 #include "File.h"
39 #include "HTMLDocument.h" 39 #include "HTMLDocument.h"
40 #include "HistogramSupport.h"
41 #include "InspectorInstrumentation.h" 40 #include "InspectorInstrumentation.h"
42 #include "MemoryCache.h" 41 #include "MemoryCache.h"
43 #include "ScriptCallStack.h" 42 #include "ScriptCallStack.h"
44 #include "ScriptController.h" 43 #include "ScriptController.h"
45 #include "ScriptProfile.h" 44 #include "ScriptProfile.h"
46 #include "SecurityOrigin.h" 45 #include "SecurityOrigin.h"
47 #include "Settings.h" 46 #include "Settings.h"
48 #include "SharedBuffer.h"
49 #include "TextResourceDecoder.h" 47 #include "TextResourceDecoder.h"
50 #include "ThreadableLoader.h" 48 #include "ThreadableLoader.h"
51 #include "WebCoreMemoryInstrumentation.h" 49 #include "WebCoreMemoryInstrumentation.h"
52 #include "XMLHttpRequestException.h" 50 #include "XMLHttpRequestException.h"
53 #include "XMLHttpRequestProgressEvent.h" 51 #include "XMLHttpRequestProgressEvent.h"
54 #include "XMLHttpRequestUpload.h" 52 #include "XMLHttpRequestUpload.h"
53 #include "core/platform/HistogramSupport.h"
54 #include "core/platform/SharedBuffer.h"
55 #include "core/platform/network/BlobData.h" 55 #include "core/platform/network/BlobData.h"
56 #include "core/platform/network/HTTPParsers.h" 56 #include "core/platform/network/HTTPParsers.h"
57 #include "core/platform/network/ParsedContentType.h" 57 #include "core/platform/network/ParsedContentType.h"
58 #include "core/platform/network/ResourceError.h" 58 #include "core/platform/network/ResourceError.h"
59 #include "core/platform/network/ResourceRequest.h" 59 #include "core/platform/network/ResourceRequest.h"
60 #include "markup.h" 60 #include "markup.h"
61 #include <wtf/ArrayBuffer.h> 61 #include <wtf/ArrayBuffer.h>
62 #include <wtf/ArrayBufferView.h> 62 #include <wtf/ArrayBufferView.h>
63 #include <wtf/RefCountedLeakCounter.h> 63 #include <wtf/RefCountedLeakCounter.h>
64 #include <wtf/StdLibExtras.h> 64 #include <wtf/StdLibExtras.h>
(...skipping 1225 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/workers/WorkerThread.cpp ('k') | Source/core/xml/XMLHttpRequestProgressEventThrottle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698