implement cef_browser_t::get_identifier()

This commit is contained in:
Mike Blumenkrantz 2015-05-08 22:58:43 -04:00
parent 49d91a5606
commit 797aa36484

View file

@ -72,6 +72,10 @@ cef_class_impl! {
fn get_main_frame(&this,) -> *mut cef_frame_t {{ fn get_main_frame(&this,) -> *mut cef_frame_t {{
this.downcast().frame.clone() this.downcast().frame.clone()
}} }}
fn get_identifier(&this,) -> c_int {{
this.downcast().id as c_int
}}
} }
} }