| 418 | } |
| 419 | |
| 420 | void CefPythonApp::RemoveJavascriptBindings(CefRefPtr<CefBrowser> browser) { |
| 421 | int browserId = browser->GetIdentifier(); |
| 422 | if (javascriptBindings_.find(browserId) != javascriptBindings_.end()) { |
| 423 | javascriptBindings_.erase(browserId); |
| 424 | } |
| 425 | } |
| 426 | |
| 427 | bool CefPythonApp::BindedFunctionExists(CefRefPtr<CefBrowser> browser, |
| 428 | const CefString& functionName) { |