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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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) 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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 send(body.getAsArrayBufferView().get(), exceptionState); 659 send(body.getAsArrayBufferView().get(), exceptionState);
660 return; 660 return;
661 } 661 }
662 662
663 if (body.isBlob()) { 663 if (body.isBlob()) {
664 send(body.getAsBlob(), exceptionState); 664 send(body.getAsBlob(), exceptionState);
665 return; 665 return;
666 } 666 }
667 667
668 if (body.isDocument()) { 668 if (body.isDocument()) {
669 send(body.getAsDocument().get(), exceptionState); 669 send(body.getAsDocument(), exceptionState);
670 return; 670 return;
671 } 671 }
672 672
673 if (body.isFormData()) { 673 if (body.isFormData()) {
674 send(body.getAsFormData(), exceptionState); 674 send(body.getAsFormData(), exceptionState);
675 return; 675 return;
676 } 676 }
677 677
678 ASSERT(body.isString()); 678 ASSERT(body.isString());
679 send(body.getAsString(), exceptionState); 679 send(body.getAsString(), exceptionState);
(...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after
1704 visitor->trace(m_responseDocumentParser); 1704 visitor->trace(m_responseDocumentParser);
1705 visitor->trace(m_progressEventThrottle); 1705 visitor->trace(m_progressEventThrottle);
1706 visitor->trace(m_upload); 1706 visitor->trace(m_upload);
1707 visitor->trace(m_blobLoader); 1707 visitor->trace(m_blobLoader);
1708 XMLHttpRequestEventTarget::trace(visitor); 1708 XMLHttpRequestEventTarget::trace(visitor);
1709 DocumentParserClient::trace(visitor); 1709 DocumentParserClient::trace(visitor);
1710 ActiveDOMObject::trace(visitor); 1710 ActiveDOMObject::trace(visitor);
1711 } 1711 }
1712 1712
1713 } // namespace blink 1713 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698