Index: chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api_stub.cc |
diff --git a/chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api_stub.cc b/chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api_stub.cc |
index b22e2576230fd2ef1765e560a05c95ace9fae413..6a55645a0a29d96fd60160d1c3aca8072cbee832 100644 |
--- a/chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api_stub.cc |
+++ b/chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api_stub.cc |
@@ -95,4 +95,42 @@ bool WebrtcLoggingPrivateDiscardFunction::RunAsync() { |
void WebrtcLoggingPrivateDiscardFunction::DiscardCallback( |
bool success, const std::string& error_message) {} |
+WebrtcLoggingPrivateStartRtpDumpFunction:: |
+ WebrtcLoggingPrivateStartRtpDumpFunction() { |
+} |
+ |
+WebrtcLoggingPrivateStartRtpDumpFunction:: |
+ ~WebrtcLoggingPrivateStartRtpDumpFunction() { |
+} |
+ |
+bool WebrtcLoggingPrivateStartRtpDumpFunction::RunAsync() { |
+ SetError(kErrorNotSupported); |
+ SendResponse(false); |
+ return false; |
+} |
+ |
+void WebrtcLoggingPrivateStartRtpDumpFunction::StartRtpDumpCallback( |
+ bool success, |
+ const std::string& error_message) { |
+} |
+ |
+WebrtcLoggingPrivateStopRtpDumpFunction:: |
+ WebrtcLoggingPrivateStopRtpDumpFunction() { |
+} |
+ |
+WebrtcLoggingPrivateStopRtpDumpFunction:: |
+ ~WebrtcLoggingPrivateStopRtpDumpFunction() { |
+} |
+ |
+bool WebrtcLoggingPrivateStopRtpDumpFunction::RunAsync() { |
+ SetError(kErrorNotSupported); |
+ SendResponse(false); |
+ return false; |
+} |
+ |
+void WebrtcLoggingPrivateStopRtpDumpFunction::StopRtpDumpCallback( |
+ bool success, |
+ const std::string& error_message) { |
+} |
+ |
} // namespace extensions |