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

Unified Diff: chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api_stub.cc

Issue 267623003: Adds StartRtpDump and StopRtpDump methods to webrtcLoggingPrivate API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync Created 6 years, 7 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: 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

Powered by Google App Engine
This is Rietveld 408576698