| OLD | NEW |
| 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. |
| 11 * | 11 * |
| 12 * This library is distributed in the hope that it will be useful, | 12 * This library is distributed in the hope that it will be useful, |
| 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 * Lesser General Public License for more details. | 15 * Lesser General Public License for more details. |
| 16 * | 16 * |
| 17 * You should have received a copy of the GNU Lesser General Public | 17 * You should have received a copy of the GNU Lesser General Public |
| 18 * License along with this library; if not, write to the Free Software | 18 * License along with this library; if not, write to the Free Software |
| 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U
SA | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U
SA |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #ifndef XMLHttpRequest_h | 22 #ifndef XMLHttpRequest_h |
| 23 #define XMLHttpRequest_h | 23 #define XMLHttpRequest_h |
| 24 | 24 |
| 25 #include "bindings/v8/ScriptString.h" | 25 #include "bindings/core/v8/ScriptString.h" |
| 26 #include "bindings/v8/ScriptWrappable.h" | 26 #include "bindings/core/v8/ScriptWrappable.h" |
| 27 #include "core/dom/ActiveDOMObject.h" | 27 #include "core/dom/ActiveDOMObject.h" |
| 28 #include "core/events/EventListener.h" | 28 #include "core/events/EventListener.h" |
| 29 #include "core/loader/ThreadableLoaderClient.h" | 29 #include "core/loader/ThreadableLoaderClient.h" |
| 30 #include "core/xml/XMLHttpRequestEventTarget.h" | 30 #include "core/xml/XMLHttpRequestEventTarget.h" |
| 31 #include "core/xml/XMLHttpRequestProgressEventThrottle.h" | 31 #include "core/xml/XMLHttpRequestProgressEventThrottle.h" |
| 32 #include "platform/AsyncMethodRunner.h" | 32 #include "platform/AsyncMethodRunner.h" |
| 33 #include "platform/heap/Handle.h" | 33 #include "platform/heap/Handle.h" |
| 34 #include "platform/network/FormData.h" | 34 #include "platform/network/FormData.h" |
| 35 #include "platform/network/ResourceResponse.h" | 35 #include "platform/network/ResourceResponse.h" |
| 36 #include "platform/weborigin/SecurityOrigin.h" | 36 #include "platform/weborigin/SecurityOrigin.h" |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 bool m_createdDocument; | 266 bool m_createdDocument; |
| 267 bool m_error; | 267 bool m_error; |
| 268 bool m_uploadEventsAllowed; | 268 bool m_uploadEventsAllowed; |
| 269 bool m_uploadComplete; | 269 bool m_uploadComplete; |
| 270 bool m_sameOriginRequest; | 270 bool m_sameOriginRequest; |
| 271 }; | 271 }; |
| 272 | 272 |
| 273 } // namespace WebCore | 273 } // namespace WebCore |
| 274 | 274 |
| 275 #endif // XMLHttpRequest_h | 275 #endif // XMLHttpRequest_h |
| OLD | NEW |