diff --git a/include/internal/cef_types_wrappers.h b/include/internal/cef_types_wrappers.h index 8ac97800c..75368adfd 100644 --- a/include/internal/cef_types_wrappers.h +++ b/include/internal/cef_types_wrappers.h @@ -544,6 +544,7 @@ struct CefSettingsTraits { cef_string_clear(&s->browser_subprocess_path); cef_string_clear(&s->framework_dir_path); cef_string_clear(&s->cache_path); + cef_string_clear(&s->root_cache_path); cef_string_clear(&s->user_data_path); cef_string_clear(&s->user_agent); cef_string_clear(&s->product_version); @@ -572,6 +573,8 @@ struct CefSettingsTraits { cef_string_set(src->cache_path.str, src->cache_path.length, &target->cache_path, copy); + cef_string_set(src->root_cache_path.str, src->root_cache_path.length, + &target->root_cache_path, copy); cef_string_set(src->user_data_path.str, src->user_data_path.length, &target->user_data_path, copy); target->persist_session_cookies = src->persist_session_cookies;