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

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

Issue 2366253002: Remove ActiveDOMObject::stop() (Closed)
Patch Set: temp Created 4 years, 2 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 ResponseTypeBlob, 96 ResponseTypeBlob,
97 ResponseTypeArrayBuffer, 97 ResponseTypeArrayBuffer,
98 ResponseTypeLegacyStream, 98 ResponseTypeLegacyStream,
99 }; 99 };
100 100
101 // ActiveDOMObject 101 // ActiveDOMObject
102 void contextDestroyed() override; 102 void contextDestroyed() override;
103 ExecutionContext* getExecutionContext() const override; 103 ExecutionContext* getExecutionContext() const override;
104 void suspend() override; 104 void suspend() override;
105 void resume() override; 105 void resume() override;
106 void stop() override;
107 106
108 // ScriptWrappable 107 // ScriptWrappable
109 bool hasPendingActivity() const final; 108 bool hasPendingActivity() const final;
110 109
111 // XMLHttpRequestEventTarget 110 // XMLHttpRequestEventTarget
112 const AtomicString& interfaceName() const override; 111 const AtomicString& interfaceName() const override;
113 112
114 // JavaScript attributes and methods 113 // JavaScript attributes and methods
115 const KURL& url() const { return m_url; } 114 const KURL& url() const { return m_url; }
116 String statusText() const; 115 String statusText() const;
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 // option. 337 // option.
339 bool m_downloadingToFile; 338 bool m_downloadingToFile;
340 bool m_responseTextOverflow; 339 bool m_responseTextOverflow;
341 }; 340 };
342 341
343 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*); 342 std::ostream& operator<<(std::ostream&, const XMLHttpRequest*);
344 343
345 } // namespace blink 344 } // namespace blink
346 345
347 #endif // XMLHttpRequest_h 346 #endif // XMLHttpRequest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698