Rename CefBase to CefBaseRefCounted (issue #2090)

This commit is contained in:
Marshall Greenblatt
2017-02-09 17:07:43 -05:00
parent 07ba48b082
commit 0afcb82ee6
679 changed files with 2066 additions and 1962 deletions

View File

@ -63,7 +63,7 @@ typedef struct _cef_browser_t {
///
// Base structure.
///
cef_base_t base;
cef_base_ref_counted_t base;
///
// Returns the browser host object. This function can only be called in the
@ -193,7 +193,7 @@ typedef struct _cef_run_file_dialog_callback_t {
///
// Base structure.
///
cef_base_t base;
cef_base_ref_counted_t base;
///
// Called asynchronously after the file dialog is dismissed.
@ -216,7 +216,7 @@ typedef struct _cef_navigation_entry_visitor_t {
///
// Base structure.
///
cef_base_t base;
cef_base_ref_counted_t base;
///
// Method that will be executed. Do not keep a reference to |entry| outside of
@ -239,7 +239,7 @@ typedef struct _cef_pdf_print_callback_t {
///
// Base structure.
///
cef_base_t base;
cef_base_ref_counted_t base;
///
// Method that will be executed when the PDF printing has completed. |path| is
@ -260,7 +260,7 @@ typedef struct _cef_download_image_callback_t {
///
// Base structure.
///
cef_base_t base;
cef_base_ref_counted_t base;
///
// Method that will be executed when the image download has completed.
@ -285,7 +285,7 @@ typedef struct _cef_browser_host_t {
///
// Base structure.
///
cef_base_t base;
cef_base_ref_counted_t base;
///
// Returns the hosted browser object.