| 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. |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 enum ResponseTypeCode { | 90 enum ResponseTypeCode { |
| 91 ResponseTypeDefault, | 91 ResponseTypeDefault, |
| 92 ResponseTypeText, | 92 ResponseTypeText, |
| 93 ResponseTypeJSON, | 93 ResponseTypeJSON, |
| 94 ResponseTypeDocument, | 94 ResponseTypeDocument, |
| 95 ResponseTypeBlob, | 95 ResponseTypeBlob, |
| 96 ResponseTypeArrayBuffer, | 96 ResponseTypeArrayBuffer, |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 // SuspendableObject | 99 // SuspendableObject |
| 100 void contextDestroyed() override; | 100 void contextDestroyed(ExecutionContext*) override; |
| 101 ExecutionContext* getExecutionContext() const override; | 101 ExecutionContext* getExecutionContext() const override; |
| 102 void suspend() override; | 102 void suspend() override; |
| 103 void resume() override; | 103 void resume() override; |
| 104 | 104 |
| 105 // ScriptWrappable | 105 // ScriptWrappable |
| 106 bool hasPendingActivity() const final; | 106 bool hasPendingActivity() const final; |
| 107 | 107 |
| 108 // XMLHttpRequestEventTarget | 108 // XMLHttpRequestEventTarget |
| 109 const AtomicString& interfaceName() const override; | 109 const AtomicString& interfaceName() const override; |
| 110 | 110 |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 bool m_downloadingToFile; | 335 bool m_downloadingToFile; |
| 336 bool m_responseTextOverflow; | 336 bool m_responseTextOverflow; |
| 337 bool m_sendFlag; | 337 bool m_sendFlag; |
| 338 }; | 338 }; |
| 339 | 339 |
| 340 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*); | 340 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*); |
| 341 | 341 |
| 342 } // namespace blink | 342 } // namespace blink |
| 343 | 343 |
| 344 #endif // XMLHttpRequest_h | 344 #endif // XMLHttpRequest_h |
| OLD | NEW |