Upgrade Rust.

This commit is contained in:
Jack Moffitt 2014-07-21 07:37:24 -06:00
parent 8b6f62c195
commit b91e6f30e0
132 changed files with 764 additions and 738 deletions

View file

@ -8,20 +8,20 @@ use std::mem;
use types::{cef_browser_settings_t, cef_browser_t, cef_client_t, cef_request_context_t, cef_string_t, cef_window_info_t};
#[no_mangle]
pub extern "C" fn cef_browser_host_create_browser(_windowInfo: *cef_window_info_t,
pub extern "C" fn cef_browser_host_create_browser(_windowInfo: *const cef_window_info_t,
_client: *mut cef_client_t,
_url: *cef_string_t,
_settings: *cef_browser_settings_t,
_url: *const cef_string_t,
_settings: *const cef_browser_settings_t,
_request_context: *mut cef_request_context_t)
-> c_int {
0
}
#[no_mangle]
pub extern "C" fn cef_browser_host_create_browser_sync(_windowInfo: *cef_window_info_t,
pub extern "C" fn cef_browser_host_create_browser_sync(_windowInfo: *const cef_window_info_t,
_client: *mut cef_client_t,
_url: *cef_string_t,
_settings: *cef_browser_settings_t,
_url: *const cef_string_t,
_settings: *const cef_browser_settings_t,
_request_context: *mut cef_request_context_t)
-> *mut cef_browser_t {
unsafe {