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

Unified Diff: content/renderer/presentation/presentation_dispatcher_unittest.cc

Issue 2710703006: Remove unused PresentationServiceImpl message code (Closed)
Patch Set: Remove unused PresentationDispatcher test code 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
Index: content/renderer/presentation/presentation_dispatcher_unittest.cc
diff --git a/content/renderer/presentation/presentation_dispatcher_unittest.cc b/content/renderer/presentation/presentation_dispatcher_unittest.cc
index 5cf22a0e360fabbb572415fcd8b50b5209a68dde..d1a8a0422fd5041182ab2badbc5bf8a0f94afb9a 100644
--- a/content/renderer/presentation/presentation_dispatcher_unittest.cc
+++ b/content/renderer/presentation/presentation_dispatcher_unittest.cc
@@ -76,20 +76,6 @@ class MockPresentationService : public PresentationService {
const base::Optional<std::string>& presentation_id,
const JoinSessionCallback& callback));
- // *Internal method is to work around lack of support for move-only types in
- // GMock.
- void SendConnectionMessage(
- const PresentationSessionInfo& session_info,
- ConnectionMessagePtr message_request,
- const SendConnectionMessageCallback& callback) override {
- SendConnectionMessageInternal(session_info, message_request.get(),
- callback);
- }
- MOCK_METHOD3(SendConnectionMessageInternal,
- void(const PresentationSessionInfo& session_info,
- ConnectionMessage* message_request,
- const SendConnectionMessageCallback& callback));
-
MOCK_METHOD2(CloseConnection,
void(const GURL& presentation_url,
const std::string& presentation_id));

Powered by Google App Engine
This is Rietveld 408576698