Remove rtc::Optional alias and api:optional target

Update left-overs where old target still was used.

Bug: webrtc:9078
Change-Id: I2162c928091fc4ff1dea33a3f03adbe47207d206
Reviewed-on: https://webrtc-review.googlesource.com/84740
Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#23913}
This commit is contained in:
Danil Chapovalov
2018-07-09 10:58:54 +02:00
committed by Commit Bot
parent 9ea085a208
commit 6f5b0f920a
10 changed files with 16 additions and 968 deletions

View File

@ -42,8 +42,8 @@ class FrameGeneratorCapturerVideoTrackSource : public VideoTrackSource {
FrameGeneratorCapturerVideoTrackSource(Config config, Clock* clock)
: VideoTrackSource(false /* remote */) {
video_capturer_.reset(test::FrameGeneratorCapturer::Create(
config.width, config.height, rtc::nullopt, config.num_squares_generated,
config.frames_per_second, clock));
config.width, config.height, absl::nullopt,
config.num_squares_generated, config.frames_per_second, clock));
}
~FrameGeneratorCapturerVideoTrackSource() = default;