MCPcopy Create free account
hub / github.com/CasparCG/server / Execute

Method Execute

src/modules/html/html.cpp:79–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77 }
78
79 bool Execute(const CefString& name,
80 CefRefPtr<CefV8Value> object,
81 const CefV8ValueList& arguments,
82 CefRefPtr<CefV8Value>& retval,
83 CefString& exception) override
84 {
85 if (!CefCurrentlyOn(TID_RENDERER)) {
86 return false;
87 }
88
89 CefRefPtr<CefFrame> mainFrame = browser_->GetMainFrame();
90 if (mainFrame) {
91 mainFrame->SendProcessMessage(PID_BROWSER, CefProcessMessage::Create(REMOVE_MESSAGE_NAME));
92 }
93
94 return true;
95 }
96
97 IMPLEMENT_REFCOUNTING(remove_handler);
98};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected