mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Remove deprecated base::[Dictionary|List]Value API usage
This commit is contained in:
@@ -191,11 +191,11 @@ void CefBrowserViewImpl::Detach() {
|
||||
}
|
||||
}
|
||||
|
||||
void CefBrowserViewImpl::GetDebugInfo(base::DictionaryValue* info,
|
||||
void CefBrowserViewImpl::GetDebugInfo(base::Value::Dict* info,
|
||||
bool include_children) {
|
||||
ParentClass::GetDebugInfo(info, include_children);
|
||||
if (browser_) {
|
||||
info->SetString("url", browser_->GetMainFrame()->GetURL().ToString());
|
||||
info->Set("url", browser_->GetMainFrame()->GetURL().ToString());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user