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

Side by Side Diff: remoting/test/test_video_renderer.cc

Issue 1542203002: Switch to standard integer types in remoting/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-remoting-host
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
« no previous file with comments | « remoting/test/test_video_renderer.h ('k') | remoting/test/test_video_renderer_unittest.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "remoting/test/test_video_renderer.h" 5 #include "remoting/test/test_video_renderer.h"
6 6
7 #include <stdint.h>
8
7 #include "base/bind.h" 9 #include "base/bind.h"
8 #include "base/callback_helpers.h" 10 #include "base/callback_helpers.h"
9 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/macros.h"
10 #include "base/synchronization/lock.h" 13 #include "base/synchronization/lock.h"
11 #include "base/thread_task_runner_handle.h" 14 #include "base/thread_task_runner_handle.h"
12 #include "base/threading/thread.h" 15 #include "base/threading/thread.h"
13 #include "remoting/codec/video_decoder.h" 16 #include "remoting/codec/video_decoder.h"
14 #include "remoting/codec/video_decoder_verbatim.h" 17 #include "remoting/codec/video_decoder_verbatim.h"
15 #include "remoting/codec/video_decoder_vpx.h" 18 #include "remoting/codec/video_decoder_vpx.h"
16 #include "remoting/proto/video.pb.h" 19 #include "remoting/proto/video.pb.h"
17 #include "remoting/test/rgb_value.h" 20 #include "remoting/test/rgb_value.h"
18 #include "remoting/test/video_frame_writer.h" 21 #include "remoting/test/video_frame_writer.h"
19 #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h" 22 #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h"
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 DCHECK(thread_checker_.CalledOnValidThread()); 368 DCHECK(thread_checker_.CalledOnValidThread());
366 369
367 video_decode_task_runner_->PostTask( 370 video_decode_task_runner_->PostTask(
368 FROM_HERE, 371 FROM_HERE,
369 base::Bind(&Core::save_frame_data_to_disk, base::Unretained(core_.get()), 372 base::Bind(&Core::save_frame_data_to_disk, base::Unretained(core_.get()),
370 save_frame_data_to_disk)); 373 save_frame_data_to_disk));
371 } 374 }
372 375
373 } // namespace test 376 } // namespace test
374 } // namespace remoting 377 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/test/test_video_renderer.h ('k') | remoting/test/test_video_renderer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698