Index: content/shell/renderer/test_runner/mock_presentation_client.cc |
diff --git a/content/shell/renderer/test_runner/mock_presentation_client.cc b/content/shell/renderer/test_runner/mock_presentation_client.cc |
index 02012bca821851a92d8e266e1e6c1aedfc266c70..098723496a4d9b3b6325926adc9c928ae41a9384 100644 |
--- a/content/shell/renderer/test_runner/mock_presentation_client.cc |
+++ b/content/shell/renderer/test_runner/mock_presentation_client.cc |
@@ -50,6 +50,22 @@ void MockPresentationClient::setController( |
controller_ = controller; |
} |
+void MockPresentationClient::startSession( |
+ const blink::WebString& presentationUrl, |
+ const blink::WebString& presentationId, |
+ blink::WebPresentationSessionClientCallbacks* callback) { |
+ NOTIMPLEMENTED(); |
+ delete callback; |
+} |
+ |
+void MockPresentationClient::joinSession( |
+ const blink::WebString& presentationUrl, |
+ const blink::WebString& presentationId, |
+ blink::WebPresentationSessionClientCallbacks* callback) { |
+ NOTIMPLEMENTED(); |
+ delete callback; |
+} |
+ |
void MockPresentationClient::updateAvailableChangeWatched(bool watched) { |
if (!watched) |
return; |