| 409 | } |
| 410 | |
| 411 | CefRefPtr<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 | |
| 420 | void CefPythonApp::RemoveJavascriptBindings(CefRefPtr<CefBrowser> browser) { |
| 421 | int browserId = browser->GetIdentifier(); |