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

Unified Diff: content/browser/presentation/presentation_service_impl_unittest.cc

Issue 1507743005: [MediaRouter] Renames CloseRoute() to Terminate() and creates DetachRoute() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Forgot a call to DetachRoute! Created 5 years 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: content/browser/presentation/presentation_service_impl_unittest.cc
diff --git a/content/browser/presentation/presentation_service_impl_unittest.cc b/content/browser/presentation/presentation_service_impl_unittest.cc
index 5f8223666e023ac43fc1eef2499ffb340793865f..4bb69bc6860de386a45ed8eff2f452ba263bcc74 100644
--- a/content/browser/presentation/presentation_service_impl_unittest.cc
+++ b/content/browser/presentation/presentation_service_impl_unittest.cc
@@ -103,11 +103,11 @@ class MockPresentationServiceDelegate : public PresentationServiceDelegate {
const std::string& presentation_id,
const PresentationSessionStartedCallback& success_cb,
const PresentationSessionErrorCallback& error_cb));
- MOCK_METHOD3(CloseSession,
+ MOCK_METHOD3(CloseConnection,
void(int render_process_id,
int render_frame_id,
const std::string& presentation_id));
- MOCK_METHOD3(TerminateSession,
+ MOCK_METHOD3(Terminate,
void(int render_process_id,
int render_frame_id,
const std::string& presentation_id));
@@ -571,18 +571,18 @@ TEST_F(PresentationServiceImplTest, JoinSessionError) {
SaveQuitClosureAndRunLoop();
}
-TEST_F(PresentationServiceImplTest, CloseSession) {
- service_ptr_->CloseSession(kPresentationUrl, kPresentationId);
+TEST_F(PresentationServiceImplTest, CloseConnection) {
+ service_ptr_->CloseConnection(kPresentationUrl, kPresentationId);
base::RunLoop run_loop;
- EXPECT_CALL(mock_delegate_, CloseSession(_, _, Eq(kPresentationId)))
+ EXPECT_CALL(mock_delegate_, CloseConnection(_, _, Eq(kPresentationId)))
.WillOnce(InvokeWithoutArgs(&run_loop, &base::RunLoop::Quit));
run_loop.Run();
}
-TEST_F(PresentationServiceImplTest, TerminateSession) {
- service_ptr_->TerminateSession(kPresentationUrl, kPresentationId);
+TEST_F(PresentationServiceImplTest, Terminate) {
+ service_ptr_->Terminate(kPresentationUrl, kPresentationId);
base::RunLoop run_loop;
- EXPECT_CALL(mock_delegate_, TerminateSession(_, _, Eq(kPresentationId)))
+ EXPECT_CALL(mock_delegate_, Terminate(_, _, Eq(kPresentationId)))
.WillOnce(InvokeWithoutArgs(&run_loop, &base::RunLoop::Quit));
run_loop.Run();
}

Powered by Google App Engine
This is Rietveld 408576698