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

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

Issue 1208083004: Presentation API: ignore presentation id passed to startSession(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 5 years, 5 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: 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 74f968dccc0d32af114e1ef0595fa4d03c794139..9528ee234fab553baa9b819b6cf2e70d9e7ee542 100644
--- a/content/browser/presentation/presentation_service_impl_unittest.cc
+++ b/content/browser/presentation/presentation_service_impl_unittest.cc
@@ -83,12 +83,11 @@ class MockPresentationServiceDelegate : public PresentationServiceDelegate {
int routing_id,
const std::string& default_presentation_url,
const std::string& default_presentation_id));
- MOCK_METHOD6(StartSession,
+ MOCK_METHOD5(StartSession,
void(
int render_process_id,
int render_frame_id,
const std::string& presentation_url,
- const std::string& presentation_id,
const PresentationSessionSuccessCallback& success_cb,
const PresentationSessionErrorCallback& error_cb));
MOCK_METHOD6(JoinSession,
@@ -463,17 +462,15 @@ TEST_F(PresentationServiceImplTest, SetSameDefaultPresentationUrl) {
TEST_F(PresentationServiceImplTest, StartSessionSuccess) {
service_ptr_->StartSession(
kPresentationUrl,
- kPresentationId,
base::Bind(
&PresentationServiceImplTest::ExpectNewSessionMojoCallbackSuccess,
base::Unretained(this)));
base::RunLoop run_loop;
base::Callback<void(const PresentationSessionInfo&)> success_cb;
- EXPECT_CALL(mock_delegate_, StartSession(
- _, _, Eq(kPresentationUrl), Eq(kPresentationId), _, _))
+ EXPECT_CALL(mock_delegate_, StartSession(_, _, Eq(kPresentationUrl), _, _))
.WillOnce(DoAll(
InvokeWithoutArgs(&run_loop, &base::RunLoop::Quit),
- SaveArg<4>(&success_cb)));
+ SaveArg<3>(&success_cb)));
run_loop.Run();
success_cb.Run(PresentationSessionInfo(kPresentationUrl, kPresentationId));
SaveQuitClosureAndRunLoop();
@@ -482,17 +479,15 @@ TEST_F(PresentationServiceImplTest, StartSessionSuccess) {
TEST_F(PresentationServiceImplTest, StartSessionError) {
service_ptr_->StartSession(
kPresentationUrl,
- kPresentationId,
base::Bind(
&PresentationServiceImplTest::ExpectNewSessionMojoCallbackError,
base::Unretained(this)));
base::RunLoop run_loop;
base::Callback<void(const PresentationError&)> error_cb;
- EXPECT_CALL(mock_delegate_, StartSession(
- _, _, Eq(kPresentationUrl), Eq(kPresentationId), _, _))
+ EXPECT_CALL(mock_delegate_, StartSession(_, _, Eq(kPresentationUrl), _, _))
.WillOnce(DoAll(
InvokeWithoutArgs(&run_loop, &base::RunLoop::Quit),
- SaveArg<5>(&error_cb)));
+ SaveArg<4>(&error_cb)));
run_loop.Run();
error_cb.Run(PresentationError(PRESENTATION_ERROR_UNKNOWN, "Error message"));
SaveQuitClosureAndRunLoop();
@@ -584,15 +579,13 @@ TEST_F(PresentationServiceImplTest, ReceiveSessionMessagesAfterReset) {
TEST_F(PresentationServiceImplTest, StartSessionInProgress) {
std::string presentation_url1("http://fooUrl");
- std::string presentation_id1("presentationId1");
std::string presentation_url2("http://barUrl");
- std::string presentation_id2("presentationId2");
- service_ptr_->StartSession(presentation_url1, presentation_id1,
+ service_ptr_->StartSession(presentation_url1,
base::Bind(&DoNothing));
// This request should fail immediately, since there is already a StartSession
// in progress.
service_ptr_->StartSession(
- presentation_url2, presentation_id2,
+ presentation_url2,
base::Bind(
&PresentationServiceImplTest::ExpectNewSessionMojoCallbackError,
base::Unretained(this)));
« no previous file with comments | « content/browser/presentation/presentation_service_impl.cc ('k') | content/common/presentation/presentation_service.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698