| Index: chrome/browser/extensions/extension_function_dispatcher.cc
|
| diff --git a/chrome/browser/extensions/extension_function_dispatcher.cc b/chrome/browser/extensions/extension_function_dispatcher.cc
|
| index 2a0d40932406d88aefcfba7405719091e6a87e3f..3d2836c924b1c50d8ad4fc4f7f4c91657d61a81f 100644
|
| --- a/chrome/browser/extensions/extension_function_dispatcher.cc
|
| +++ b/chrome/browser/extensions/extension_function_dispatcher.cc
|
| @@ -18,6 +18,7 @@
|
| #include "chrome/browser/download/download_extension_api.h"
|
| #include "chrome/browser/extensions/api/app/app_api.h"
|
| #include "chrome/browser/extensions/api/dns/dns_api.h"
|
| +#include "chrome/browser/extensions/api/offscreen_tabs/offscreen_tabs_api.h"
|
| #include "chrome/browser/extensions/api/permissions/permissions_api.h"
|
| #include "chrome/browser/extensions/api/serial/serial_api.h"
|
| #include "chrome/browser/extensions/api/socket/socket_api.h"
|
| @@ -501,6 +502,16 @@ void FactoryRegistry::ResetFunctions() {
|
| // System
|
| RegisterFunction<extensions::GetIncognitoModeAvailabilityFunction>();
|
| RegisterFunction<extensions::GetUpdateStatusFunction>();
|
| +
|
| + // Experimental Offscreen Tabs
|
| + RegisterFunction<CreateOffscreenTabFunction>();
|
| + RegisterFunction<GetOffscreenTabFunction>();
|
| + RegisterFunction<GetAllOffscreenTabFunction>();
|
| + RegisterFunction<RemoveOffscreenTabFunction>();
|
| + RegisterFunction<SendKeyboardEventOffscreenTabFunction>();
|
| + RegisterFunction<SendMouseEventOffscreenTabFunction>();
|
| + RegisterFunction<ToDataUrlOffscreenTabFunction>();
|
| + RegisterFunction<UpdateOffscreenTabFunction>();
|
| }
|
|
|
| void FactoryRegistry::GetAllNames(std::vector<std::string>* names) {
|
|
|