|
70 | 70 | #include "net/ssl/openssl_client_key_store.h"
|
71 | 71 | #endif
|
72 | 72 |
|
| 73 | +#if !QT_CONFIG(webengine_webrtc) && QT_CONFIG(webengine_extensions) |
| 74 | +#include "chrome/browser/extensions/api/webrtc_logging_private/webrtc_logging_private_api.h" |
| 75 | +#endif |
| 76 | + |
73 | 77 | void *GetQtXDisplay()
|
74 | 78 | {
|
75 | 79 | return GLContextHelper::getXDisplay();
|
@@ -196,3 +200,77 @@ std::unique_ptr<ui::OSExchangeDataProvider> ui::OSExchangeDataProviderFactory::C
|
196 | 200 | {
|
197 | 201 | return nullptr;
|
198 | 202 | }
|
| 203 | + |
| 204 | +#if !QT_CONFIG(webengine_webrtc) && QT_CONFIG(webengine_extensions) |
| 205 | +namespace extensions { |
| 206 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateSetMetaDataFunction::Run() |
| 207 | +{ |
| 208 | + return RespondNow(NoArguments()); |
| 209 | +} |
| 210 | + |
| 211 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateStartFunction::Run() |
| 212 | +{ |
| 213 | + return RespondNow(NoArguments()); |
| 214 | +} |
| 215 | + |
| 216 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateSetUploadOnRenderCloseFunction::Run() |
| 217 | +{ |
| 218 | + return RespondNow(NoArguments()); |
| 219 | +} |
| 220 | + |
| 221 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateStopFunction::Run() |
| 222 | +{ |
| 223 | + return RespondNow(NoArguments()); |
| 224 | +} |
| 225 | + |
| 226 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateStoreFunction::Run() |
| 227 | +{ |
| 228 | + return RespondNow(NoArguments()); |
| 229 | +} |
| 230 | + |
| 231 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateUploadStoredFunction::Run() |
| 232 | +{ |
| 233 | + return RespondNow(NoArguments()); |
| 234 | +} |
| 235 | + |
| 236 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateUploadFunction::Run() |
| 237 | +{ |
| 238 | + return RespondNow(NoArguments()); |
| 239 | +} |
| 240 | + |
| 241 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateDiscardFunction::Run() |
| 242 | +{ |
| 243 | + return RespondNow(NoArguments()); |
| 244 | +} |
| 245 | + |
| 246 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateStartRtpDumpFunction::Run() |
| 247 | +{ |
| 248 | + return RespondNow(NoArguments()); |
| 249 | +} |
| 250 | + |
| 251 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateStopRtpDumpFunction::Run() |
| 252 | +{ |
| 253 | + return RespondNow(NoArguments()); |
| 254 | +} |
| 255 | + |
| 256 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateStartAudioDebugRecordingsFunction::Run() |
| 257 | +{ |
| 258 | + return RespondNow(NoArguments()); |
| 259 | +} |
| 260 | + |
| 261 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateStopAudioDebugRecordingsFunction::Run() |
| 262 | +{ |
| 263 | + return RespondNow(NoArguments()); |
| 264 | +} |
| 265 | + |
| 266 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateStartEventLoggingFunction::Run() |
| 267 | +{ |
| 268 | + return RespondNow(NoArguments()); |
| 269 | +} |
| 270 | + |
| 271 | +ExtensionFunction::ResponseAction WebrtcLoggingPrivateGetLogsDirectoryFunction::Run() |
| 272 | +{ |
| 273 | + return RespondNow(NoArguments()); |
| 274 | +} |
| 275 | +} // namespace extensions |
| 276 | +#endif // !QT_CONFIG(webengine_webrtc) && QT_CONFIG(webengine_extensions) |
0 commit comments