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:
Marshall Greenblatt 2012-04-13 15:23:52 +00:00
parent 8d74f7cae4
commit 7ce5e9924e
1 changed files with 0 additions and 1 deletions

View File

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