@@ -74,20 +74,20 @@ cdef extern from "include/cef_values.h":
7474 cpp_bool SetSize(size_t size)
7575 size_t GetSize()
7676 cpp_bool Clear()
77- cpp_bool Remove(int index)
78- cef_value_type_t GetType(int index)
79- cpp_bool GetBool(int index)
80- int GetInt(int index)
81- double GetDouble(int index)
82- CefString GetString(int index)
83- CefRefPtr[CefBinaryValue] GetBinary(int index)
84- CefRefPtr[CefDictionaryValue] GetDictionary(int index)
85- CefRefPtr[CefListValue] GetList(int index)
86- cpp_bool SetNull(int index)
87- cpp_bool SetBool(int index, cpp_bool value)
88- cpp_bool SetInt(int index, int value)
89- cpp_bool SetDouble(int index, double value)
90- cpp_bool SetString(int index, const CefString& value)
91- cpp_bool SetBinary(int index, CefRefPtr[CefBinaryValue] value)
92- cpp_bool SetDictionary(int index, CefRefPtr[CefDictionaryValue] value)
93- cpp_bool SetList(int index, CefRefPtr[CefListValue] value)
77+ cpp_bool Remove(size_t index)
78+ cef_value_type_t GetType(size_t index)
79+ cpp_bool GetBool(size_t index)
80+ int GetInt(size_t index)
81+ double GetDouble(size_t index)
82+ CefString GetString(size_t index)
83+ CefRefPtr[CefBinaryValue] GetBinary(size_t index)
84+ CefRefPtr[CefDictionaryValue] GetDictionary(size_t index)
85+ CefRefPtr[CefListValue] GetList(size_t index)
86+ cpp_bool SetNull(size_t index)
87+ cpp_bool SetBool(size_t index, cpp_bool value)
88+ cpp_bool SetInt(size_t index, int value)
89+ cpp_bool SetDouble(size_t index, double value)
90+ cpp_bool SetString(size_t index, const CefString& value)
91+ cpp_bool SetBinary(size_t index, CefRefPtr[CefBinaryValue] value)
92+ cpp_bool SetDictionary(size_t index, CefRefPtr[CefDictionaryValue] value)
93+ cpp_bool SetList(size_t index, CefRefPtr[CefListValue] value)
0 commit comments