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

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

Issue 334263022: Include wtf/RefCounted.h less often in modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 19 matching lines...) Expand all
30 30
31 #ifndef SourceBuffer_h 31 #ifndef SourceBuffer_h
32 #define SourceBuffer_h 32 #define SourceBuffer_h
33 33
34 #include "bindings/v8/ScriptWrappable.h" 34 #include "bindings/v8/ScriptWrappable.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 "platform/AsyncMethodRunner.h" 38 #include "platform/AsyncMethodRunner.h"
39 #include "platform/weborigin/KURL.h" 39 #include "platform/weborigin/KURL.h"
40 #include "wtf/OwnPtr.h" 40 #include "wtf/Forward.h"
41 #include "wtf/PassOwnPtr.h"
42 #include "wtf/PassRefPtr.h"
43 #include "wtf/RefCounted.h" 41 #include "wtf/RefCounted.h"
44 #include "wtf/RefPtr.h"
45 #include "wtf/text/WTFString.h" 42 #include "wtf/text/WTFString.h"
46 43
47 namespace blink { 44 namespace blink {
48 class WebSourceBuffer; 45 class WebSourceBuffer;
49 } 46 }
50 47
51 namespace WebCore { 48 namespace WebCore {
52 49
53 class ExceptionState; 50 class ExceptionState;
54 class FileReaderLoader; 51 class FileReaderLoader;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 bool m_streamMaxSizeValid; 140 bool m_streamMaxSizeValid;
144 unsigned long long m_streamMaxSize; 141 unsigned long long m_streamMaxSize;
145 AsyncMethodRunner<SourceBuffer> m_appendStreamAsyncPartRunner; 142 AsyncMethodRunner<SourceBuffer> m_appendStreamAsyncPartRunner;
146 RefPtrWillBeMember<Stream> m_stream; 143 RefPtrWillBeMember<Stream> m_stream;
147 OwnPtr<FileReaderLoader> m_loader; 144 OwnPtr<FileReaderLoader> m_loader;
148 }; 145 };
149 146
150 } // namespace WebCore 147 } // namespace WebCore
151 148
152 #endif 149 #endif
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/IndexedDBClient.h ('k') | Source/modules/mediasource/VideoPlaybackQuality.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698