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

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

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 8 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 21 matching lines...) Expand all
32 #define SourceBuffer_h 32 #define SourceBuffer_h
33 33
34 #include "bindings/core/v8/ActiveScriptWrappable.h" 34 #include "bindings/core/v8/ActiveScriptWrappable.h"
35 #include "core/dom/ActiveDOMObject.h" 35 #include "core/dom/ActiveDOMObject.h"
36 #include "core/fileapi/FileReaderLoaderClient.h" 36 #include "core/fileapi/FileReaderLoaderClient.h"
37 #include "modules/EventTargetModules.h" 37 #include "modules/EventTargetModules.h"
38 #include "modules/mediasource/TrackDefaultList.h" 38 #include "modules/mediasource/TrackDefaultList.h"
39 #include "platform/AsyncMethodRunner.h" 39 #include "platform/AsyncMethodRunner.h"
40 #include "platform/weborigin/KURL.h" 40 #include "platform/weborigin/KURL.h"
41 #include "public/platform/WebSourceBufferClient.h" 41 #include "public/platform/WebSourceBufferClient.h"
42 #include "wtf/RefCounted.h"
43 #include "wtf/text/WTFString.h" 42 #include "wtf/text/WTFString.h"
44 43
45 namespace blink { 44 namespace blink {
46 45
47 class AudioTrackList; 46 class AudioTrackList;
48 class DOMArrayBuffer; 47 class DOMArrayBuffer;
49 class DOMArrayBufferView; 48 class DOMArrayBufferView;
50 class ExceptionState; 49 class ExceptionState;
51 class FileReaderLoader; 50 class FileReaderLoader;
52 class GenericEventQueue; 51 class GenericEventQueue;
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 bool m_streamMaxSizeValid; 165 bool m_streamMaxSizeValid;
167 unsigned long long m_streamMaxSize; 166 unsigned long long m_streamMaxSize;
168 Member<AsyncMethodRunner<SourceBuffer>> m_appendStreamAsyncPartRunner; 167 Member<AsyncMethodRunner<SourceBuffer>> m_appendStreamAsyncPartRunner;
169 Member<Stream> m_stream; 168 Member<Stream> m_stream;
170 OwnPtr<FileReaderLoader> m_loader; 169 OwnPtr<FileReaderLoader> m_loader;
171 }; 170 };
172 171
173 } // namespace blink 172 } // namespace blink
174 173
175 #endif // SourceBuffer_h 174 #endif // SourceBuffer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698