Remove deprecated base::[Dictionary|List]Value API usage

This commit is contained in:
Marshall Greenblatt
2023-01-30 16:42:40 -05:00
parent 36ee304ed4
commit 4c41f14360
34 changed files with 387 additions and 375 deletions

View File

@@ -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());
}
}