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

Unified Diff: webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper_unittest.cc

Issue 2706193005: Update comments in FallbackDesktopCapturerWrapper (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper_unittest.cc
diff --git a/webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper_unittest.cc b/webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper_unittest.cc
index b3bf51b733ec593a67e713690eacdde7198d5bb2..106848bb2df1271d7fa7856185c190804e4d2179 100644
--- a/webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper_unittest.cc
+++ b/webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper_unittest.cc
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
+ * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
@@ -80,15 +80,15 @@ class FallbackDesktopCapturerWrapperTest : public testing::Test,
// DesktopCapturer::Callback interface
void OnCaptureResult(DesktopCapturer::Result result,
std::unique_ptr<DesktopFrame> frame) override;
- PainterDesktopFrameGenerator frame_generator;
+ PainterDesktopFrameGenerator frame_generator_;
};
FallbackDesktopCapturerWrapperTest::FallbackDesktopCapturerWrapperTest() {
- frame_generator.size()->set(1024, 768);
+ frame_generator_.size()->set(1024, 768);
std::unique_ptr<DesktopCapturer> main_capturer =
- CreateDesktopCapturer(&frame_generator);
+ CreateDesktopCapturer(&frame_generator_);
std::unique_ptr<DesktopCapturer> secondary_capturer =
- CreateDesktopCapturer(&frame_generator);
+ CreateDesktopCapturer(&frame_generator_);
main_capturer_ = static_cast<FakeDesktopCapturer*>(main_capturer.get());
secondary_capturer_ =
static_cast<FakeDesktopCapturer*>(secondary_capturer.get());
« no previous file with comments | « webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698