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

Side by Side Diff: Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h

Issue 666153003: Move XMLHttpRequest related files to core/xmlhttprequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 1 month 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) 2010 Julien Chaffraix <jchaffraix@webkit.org> 2 * Copyright (C) 2010 Julien Chaffraix <jchaffraix@webkit.org>
3 * All right reserved. 3 * All right reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 RawPtrWillBeMember<EventTarget> m_target; 98 RawPtrWillBeMember<EventTarget> m_target;
99 99
100 // A slot for the deferred "progress" ProgressEvent. When multiple events 100 // A slot for the deferred "progress" ProgressEvent. When multiple events
101 // arrive, only the last one is stored and others are discarded. 101 // arrive, only the last one is stored and others are discarded.
102 const OwnPtr<DeferredEvent> m_deferred; 102 const OwnPtr<DeferredEvent> m_deferred;
103 }; 103 };
104 104
105 } // namespace blink 105 } // namespace blink
106 106
107 #endif // XMLHttpRequestProgressEventThrottle_h 107 #endif // XMLHttpRequestProgressEventThrottle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698