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:
@@ -315,11 +315,11 @@ CefRefPtr<CefOverlayController> CefWindowImpl::AddOverlayView(
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void CefWindowImpl::GetDebugInfo(base::DictionaryValue* info,
|
||||
void CefWindowImpl::GetDebugInfo(base::Value::Dict* info,
|
||||
bool include_children) {
|
||||
ParentClass::GetDebugInfo(info, include_children);
|
||||
if (root_view()) {
|
||||
info->SetString("title", root_view()->title());
|
||||
info->Set("title", root_view()->title());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user