Don't DCHECK the |value| argument passed to cef_string_list_append().
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@593 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
8d74f7cae4
commit
7ce5e9924e
|
@ -34,7 +34,6 @@ CEF_EXPORT int cef_string_list_value(cef_string_list_t list, int index,
|
|||
CEF_EXPORT void cef_string_list_append(cef_string_list_t list,
|
||||
const cef_string_t* value) {
|
||||
DCHECK(list);
|
||||
DCHECK(value);
|
||||
StringList* impl = reinterpret_cast<StringList*>(list);
|
||||
impl->push_back(CefString(value));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue