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

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: Created 6 years, 8 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 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

Powered by Google App Engine
This is Rietveld 408576698