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

Side by Side Diff: media/muxers/webm_muxer_fuzzertest.cc

Issue 2354903003: Don't include the tracing in gpu_memory_buffer.h (Closed)
Patch Set: Fix linux build again Created 4 years, 2 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
« no previous file with comments | « media/muxers/webm_muxer.cc ('k') | media/video/gpu_memory_buffer_video_frame_pool.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #include <stddef.h> 5 #include <stddef.h>
6 #include <stdint.h> 6 #include <stdint.h>
7 7
8 #include <random> 8 #include <random>
9 9
10 #include "base/bind.h"
10 #include "base/logging.h" 11 #include "base/logging.h"
11 #include "base/memory/ptr_util.h" 12 #include "base/memory/ptr_util.h"
12 #include "base/run_loop.h" 13 #include "base/run_loop.h"
13 #include "base/strings/string_piece.h" 14 #include "base/strings/string_piece.h"
14 #include "media/base/audio_parameters.h" 15 #include "media/base/audio_parameters.h"
15 #include "media/base/video_frame.h" 16 #include "media/base/video_frame.h"
16 #include "media/muxers/webm_muxer.h" 17 #include "media/muxers/webm_muxer.h"
17 18
18 using namespace media; 19 using namespace media;
19 20
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 muxer.OnEncodedAudio(params, base::MakeUnique<std::string>(str), 83 muxer.OnEncodedAudio(params, base::MakeUnique<std::string>(str),
83 base::TimeTicks()); 84 base::TimeTicks());
84 base::RunLoop run_loop; 85 base::RunLoop run_loop;
85 run_loop.RunUntilIdle(); 86 run_loop.RunUntilIdle();
86 } 87 }
87 } while (num_iterations--); 88 } while (num_iterations--);
88 } 89 }
89 90
90 return 0; 91 return 0;
91 } 92 }
OLDNEW
« no previous file with comments | « media/muxers/webm_muxer.cc ('k') | media/video/gpu_memory_buffer_video_frame_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698