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

Unified Diff: media/mojo/clients/mojo_android_overlay_unittest.cc

Issue 2856253004: removed AndroidOverlayFactory (Closed)
Patch Set: cl feedvback Created 3 years, 7 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
Index: media/mojo/clients/mojo_android_overlay_unittest.cc
diff --git a/media/mojo/clients/mojo_android_overlay_unittest.cc b/media/mojo/clients/mojo_android_overlay_unittest.cc
index 3e44f1de490e3d9bd36f787e6f392bd07078b92d..c0536f440deca68c1f408323023cdd0e1d89bf98 100644
--- a/media/mojo/clients/mojo_android_overlay_unittest.cc
+++ b/media/mojo/clients/mojo_android_overlay_unittest.cc
@@ -120,8 +120,8 @@ class MojoAndroidOverlayTest : public ::testing::Test {
EXPECT_CALL(mock_provider_, OverlayCreated());
base::UnguessableToken routing_token = base::UnguessableToken::Create();
- overlay_client_.reset(
- new MojoAndroidOverlay(&interface_provider_, config_, routing_token));
+ overlay_client_.reset(new MojoAndroidOverlay(
+ &interface_provider_, std::move(config_), routing_token));
base::RunLoop().RunUntilIdle();
}
@@ -168,7 +168,7 @@ class MojoAndroidOverlayTest : public ::testing::Test {
// Inital config for |CreateOverlay|.
// Set to sane values, but feel free to modify before CreateOverlay().
- AndroidOverlay::Config config_;
+ AndroidOverlayConfig config_;
MockClientCallbacks callbacks_;
};

Powered by Google App Engine
This is Rietveld 408576698