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

Side by Side Diff: third_party/WebKit/Source/modules/mediasource/SourceBuffer.h

Issue 1580883002: Oilpan: move AsyncMethodRunner to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename to RawPtrOrMemberTrait<> Created 4 years, 11 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 140
141 AtomicString m_mode; 141 AtomicString m_mode;
142 bool m_updating; 142 bool m_updating;
143 double m_timestampOffset; 143 double m_timestampOffset;
144 double m_appendWindowStart; 144 double m_appendWindowStart;
145 double m_appendWindowEnd; 145 double m_appendWindowEnd;
146 bool m_firstInitializationSegmentReceived; 146 bool m_firstInitializationSegmentReceived;
147 147
148 Vector<unsigned char> m_pendingAppendData; 148 Vector<unsigned char> m_pendingAppendData;
149 size_t m_pendingAppendDataOffset; 149 size_t m_pendingAppendDataOffset;
150 AsyncMethodRunner<SourceBuffer> m_appendBufferAsyncPartRunner; 150 Member<AsyncMethodRunner<SourceBuffer>> m_appendBufferAsyncPartRunner;
151 151
152 double m_pendingRemoveStart; 152 double m_pendingRemoveStart;
153 double m_pendingRemoveEnd; 153 double m_pendingRemoveEnd;
154 AsyncMethodRunner<SourceBuffer> m_removeAsyncPartRunner; 154 Member<AsyncMethodRunner<SourceBuffer>> m_removeAsyncPartRunner;
155 155
156 bool m_streamMaxSizeValid; 156 bool m_streamMaxSizeValid;
157 unsigned long long m_streamMaxSize; 157 unsigned long long m_streamMaxSize;
158 AsyncMethodRunner<SourceBuffer> m_appendStreamAsyncPartRunner; 158 Member<AsyncMethodRunner<SourceBuffer>> m_appendStreamAsyncPartRunner;
159 Member<Stream> m_stream; 159 Member<Stream> m_stream;
160 OwnPtr<FileReaderLoader> m_loader; 160 OwnPtr<FileReaderLoader> m_loader;
161 }; 161 };
162 162
163 } // namespace blink 163 } // namespace blink
164 164
165 #endif // SourceBuffer_h 165 #endif // SourceBuffer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698