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

Side by Side Diff: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h

Issue 2818083002: Rewrite references to "wtf/" to "platform/wtf/" in the rest of core/. (Closed)
Patch Set: Rebase. Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@nypop.com> 3 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@nypop.com>
4 * Copyright (C) 2011 Google Inc. All rights reserved. 4 * Copyright (C) 2011 Google Inc. All rights reserved.
5 * Copyright (C) 2012 Intel Corporation 5 * Copyright (C) 2012 Intel Corporation
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 Lesser General Public 8 * modify it under the terms of the GNU Lesser 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 22 matching lines...) Expand all
33 #include "core/dom/SuspendableObject.h" 33 #include "core/dom/SuspendableObject.h"
34 #include "core/loader/ThreadableLoaderClient.h" 34 #include "core/loader/ThreadableLoaderClient.h"
35 #include "core/xmlhttprequest/XMLHttpRequestEventTarget.h" 35 #include "core/xmlhttprequest/XMLHttpRequestEventTarget.h"
36 #include "core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h" 36 #include "core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h"
37 #include "platform/heap/Handle.h" 37 #include "platform/heap/Handle.h"
38 #include "platform/loader/fetch/ResourceResponse.h" 38 #include "platform/loader/fetch/ResourceResponse.h"
39 #include "platform/network/EncodedFormData.h" 39 #include "platform/network/EncodedFormData.h"
40 #include "platform/network/HTTPHeaderMap.h" 40 #include "platform/network/HTTPHeaderMap.h"
41 #include "platform/weborigin/KURL.h" 41 #include "platform/weborigin/KURL.h"
42 #include "platform/weborigin/SecurityOrigin.h" 42 #include "platform/weborigin/SecurityOrigin.h"
43 #include "wtf/Forward.h" 43 #include "platform/wtf/Forward.h"
44 #include "wtf/PassRefPtr.h" 44 #include "platform/wtf/PassRefPtr.h"
45 #include "wtf/RefPtr.h" 45 #include "platform/wtf/RefPtr.h"
46 #include "wtf/text/AtomicString.h" 46 #include "platform/wtf/text/AtomicString.h"
47 #include "wtf/text/WTFString.h" 47 #include "platform/wtf/text/WTFString.h"
48 48
49 namespace blink { 49 namespace blink {
50 50
51 class 51 class
52 ArrayBufferOrArrayBufferViewOrBlobOrDocumentOrStringOrFormDataOrURLSearchPar ams; 52 ArrayBufferOrArrayBufferViewOrBlobOrDocumentOrStringOrFormDataOrURLSearchPar ams;
53 class Blob; 53 class Blob;
54 class BlobDataHandle; 54 class BlobDataHandle;
55 class DOMArrayBuffer; 55 class DOMArrayBuffer;
56 class DOMArrayBufferView; 56 class DOMArrayBufferView;
57 class Document; 57 class Document;
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 bool response_text_overflow_; 356 bool response_text_overflow_;
357 bool send_flag_; 357 bool send_flag_;
358 bool response_array_buffer_failure_; 358 bool response_array_buffer_failure_;
359 }; 359 };
360 360
361 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*); 361 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*);
362 362
363 } // namespace blink 363 } // namespace blink
364 364
365 #endif // XMLHttpRequest_h 365 #endif // XMLHttpRequest_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/xml/DEPS ('k') | third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698