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

Unified Diff: extensions/browser/api/cast_channel/cast_socket_unittest.cc

Issue 503873002: Remove implicit conversions from scoped_refptr to T* in extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 | « no previous file | extensions/browser/api/hid/hid_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/cast_channel/cast_socket_unittest.cc
diff --git a/extensions/browser/api/cast_channel/cast_socket_unittest.cc b/extensions/browser/api/cast_channel/cast_socket_unittest.cc
index 4090426cf06045bf7ced4b02e8601872e591678a..499647eb5bd17b31c8c36a81cde7f128644a2064 100644
--- a/extensions/browser/api/cast_channel/cast_socket_unittest.cc
+++ b/extensions/browser/api/cast_channel/cast_socket_unittest.cc
@@ -386,11 +386,11 @@ class CastSocketTest : public testing::Test {
}
void CreateCastSocket() {
- socket_ = TestCastSocket::Create(&mock_delegate_, logger_);
+ socket_ = TestCastSocket::Create(&mock_delegate_, logger_.get());
}
void CreateCastSocketSecure() {
- socket_ = TestCastSocket::CreateSecure(&mock_delegate_, logger_);
+ socket_ = TestCastSocket::CreateSecure(&mock_delegate_, logger_.get());
}
// Sets up CastSocket::Connect to succeed.
« no previous file with comments | « no previous file | extensions/browser/api/hid/hid_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698