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

Side by Side Diff: content/renderer/media/android/renderer_demuxer_android.h

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_DEMUXER_ANDROID_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_DEMUXER_ANDROID_H_
6 #define CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_DEMUXER_ANDROID_H_ 6 #define CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_DEMUXER_ANDROID_H_
7 7
8 #include "base/atomic_sequence_num.h" 8 #include "base/atomic_sequence_num.h"
9 #include "base/id_map.h" 9 #include "base/id_map.h"
10 #include "base/macros.h"
10 #include "ipc/message_filter.h" 11 #include "ipc/message_filter.h"
11 #include "media/base/android/demuxer_stream_player_params.h" 12 #include "media/base/android/demuxer_stream_player_params.h"
12 13
13 namespace base { 14 namespace base {
14 class SingleThreadTaskRunner; 15 class SingleThreadTaskRunner;
15 } 16 }
16 17
17 namespace content { 18 namespace content {
18 19
19 class MediaSourceDelegate; 20 class MediaSourceDelegate;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 IDMap<MediaSourceDelegate> delegates_; 77 IDMap<MediaSourceDelegate> delegates_;
77 scoped_refptr<ThreadSafeSender> thread_safe_sender_; 78 scoped_refptr<ThreadSafeSender> thread_safe_sender_;
78 scoped_refptr<base::SingleThreadTaskRunner> media_task_runner_; 79 scoped_refptr<base::SingleThreadTaskRunner> media_task_runner_;
79 80
80 DISALLOW_COPY_AND_ASSIGN(RendererDemuxerAndroid); 81 DISALLOW_COPY_AND_ASSIGN(RendererDemuxerAndroid);
81 }; 82 };
82 83
83 } // namespace content 84 } // namespace content
84 85
85 #endif // CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_DEMUXER_ANDROID_H_ 86 #endif // CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_DEMUXER_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698