]> git.sesse.net Git - casparcg/blobdiff - dependencies64/cef/linux/include/internal/cef_string_map.h
Upgrade CEF to 3.3029.1611.g44e39a8 / Chromium 58.0.3029.81.
[casparcg] / dependencies64 / cef / linux / include / internal / cef_string_map.h
similarity index 93%
rename from dependencies64/cef/include/internal/cef_string_map.h
rename to dependencies64/cef/linux/include/internal/cef_string_map.h
index 93eea2a550930402e9464c5f6bae2acc8bbc6c5a..a22f33a78d6e600982c99b9b7bcbc4e5e9ece58d 100644 (file)
@@ -51,7 +51,7 @@ CEF_EXPORT cef_string_map_t cef_string_map_alloc();
 ///
 // Return the number of elements in the string map.
 ///
-CEF_EXPORT int cef_string_map_size(cef_string_map_t map);
+CEF_EXPORT size_t cef_string_map_size(cef_string_map_t map);
 
 ///
 // Return the value assigned to the specified key.
@@ -63,13 +63,13 @@ CEF_EXPORT int cef_string_map_find(cef_string_map_t map,
 ///
 // Return the key at the specified zero-based string map index.
 ///
-CEF_EXPORT int cef_string_map_key(cef_string_map_t map, int index,
+CEF_EXPORT int cef_string_map_key(cef_string_map_t map, size_t index,
                                   cef_string_t* key);
 
 ///
 // Return the value at the specified zero-based string map index.
 ///
-CEF_EXPORT int cef_string_map_value(cef_string_map_t map, int index,
+CEF_EXPORT int cef_string_map_value(cef_string_map_t map, size_t index,
                                     cef_string_t* value);
 
 ///