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