MCPcopy Create free account
hub / github.com/cztomczak/cefpython / GetJavascriptBindings

Method GetJavascriptBindings

src/subprocess/cefpython_app.cpp:411–418  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

409}
410
411CefRefPtr<CefDictionaryValue> CefPythonApp::GetJavascriptBindings(
412 CefRefPtr<CefBrowser> browser) {
413 int browserId = browser->GetIdentifier();
414 if (javascriptBindings_.find(browserId) != javascriptBindings_.end()) {
415 return javascriptBindings_[browserId];
416 }
417 return NULL;
418}
419
420void CefPythonApp::RemoveJavascriptBindings(CefRefPtr<CefBrowser> browser) {
421 int browserId = browser->GetIdentifier();

Callers

nothing calls this directly

Calls 1

findMethod · 0.80

Tested by

no test coverage detected