diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2014-11-25 18:28:59 -0800 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2014-11-27 10:31:32 -0600 |
commit | c52f550367977aff32180ce632fd0ad6e8db8248 (patch) | |
tree | 6f72537823b3751b5b0b8e170a3a5310ad81ea7a /ports/cef/interfaces/cef_request_handler.rs | |
parent | 1ac5bfe830254ea4870ab254c5d348bae11094b7 (diff) | |
download | servo-c52f550367977aff32180ce632fd0ad6e8db8248.tar.gz servo-c52f550367977aff32180ce632fd0ad6e8db8248.zip |
Update to get the reference counting correct
Diffstat (limited to 'ports/cef/interfaces/cef_request_handler.rs')
-rw-r--r-- | ports/cef/interfaces/cef_request_handler.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ports/cef/interfaces/cef_request_handler.rs b/ports/cef/interfaces/cef_request_handler.rs index e519cad7399..169f8c4a670 100644 --- a/ports/cef/interfaces/cef_request_handler.rs +++ b/ports/cef/interfaces/cef_request_handler.rs @@ -70,7 +70,7 @@ pub struct _cef_quota_callback_t { // // The reference count. This will only be present for Rust instances! // - ref_count: uint, + pub ref_count: uint, // // Extra data. This will only be present for Rust instances! @@ -225,7 +225,7 @@ pub struct _cef_allow_certificate_error_callback_t { // // The reference count. This will only be present for Rust instances! // - ref_count: uint, + pub ref_count: uint, // // Extra data. This will only be present for Rust instances! @@ -485,7 +485,7 @@ pub struct _cef_request_handler_t { // // The reference count. This will only be present for Rust instances! // - ref_count: uint, + pub ref_count: uint, // // Extra data. This will only be present for Rust instances! |