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 9d082daf221d1f72398646b06c549645b26c7119..9463d68657f060d857dc1ad5cdca034abffe8c26 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::RunImpl() { |
void WebrtcLoggingPrivateDiscardFunction::DiscardCallback( |
bool success, const std::string& error_message) {} |
+WebrtcLoggingPrivateStartRtpDumpFunction:: |
+ WebrtcLoggingPrivateStartRtpDumpFunction() { |
+} |
+ |
+WebrtcLoggingPrivateStartRtpDumpFunction:: |
+ ~WebrtcLoggingPrivateStartRtpDumpFunction() { |
+} |
+ |
+bool WebrtcLoggingPrivateStartRtpDumpFunction::RunImpl() { |
+ SetError(kErrorNotSupported); |
miket_OOO
2014/05/05 17:58:55
We sometimes DCHECK_CURRENTLY_ON(BrowserThread::IO
|
+ SendResponse(false); |
+ return false; |
+} |
+ |
+void WebrtcLoggingPrivateStartRtpDumpFunction::StartRtpDumpCallback( |
+ bool success, |
+ const std::string& error_message) { |
+} |
+ |
+WebrtcLoggingPrivateStopRtpDumpFunction:: |
+ WebrtcLoggingPrivateStopRtpDumpFunction() { |
+} |
+ |
+WebrtcLoggingPrivateStopRtpDumpFunction:: |
+ ~WebrtcLoggingPrivateStopRtpDumpFunction() { |
+} |
+ |
+bool WebrtcLoggingPrivateStopRtpDumpFunction::RunImpl() { |
+ SetError(kErrorNotSupported); |
+ SendResponse(false); |
+ return false; |
+} |
+ |
+void WebrtcLoggingPrivateStopRtpDumpFunction::StopRtpDumpCallback( |
+ bool success, |
+ const std::string& error_message) { |
+} |
+ |
} // namespace extensions |