]> git.sesse.net Git - casparcg/blobdiff - dependencies64/cef/linux/include/capi/cef_callback_capi.h
Upgrade CEF to 3.3029.1611.g44e39a8 / Chromium 58.0.3029.81.
[casparcg] / dependencies64 / cef / linux / include / capi / cef_callback_capi.h
similarity index 90%
rename from dependencies64/cef/include/capi/cef_callback_capi.h
rename to dependencies64/cef/linux/include/capi/cef_callback_capi.h
index cd83f2acd10329ac28ddf168afc664b996f97f71..8f6e28d3b2486fa0ca080b75d2a619f427ad90f2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (c) 2014 Marshall A. Greenblatt. All rights reserved.
+// Copyright (c) 2017 Marshall A. Greenblatt. All rights reserved.
 //
 // Redistribution and use in source and binary forms, with or without
 // modification, are permitted provided that the following conditions are
@@ -52,7 +52,7 @@ typedef struct _cef_callback_t {
   ///
   // Base structure.
   ///
-  cef_base_t base;
+  cef_base_ref_counted_t base;
 
   ///
   // Continue processing.
@@ -69,17 +69,17 @@ typedef struct _cef_callback_t {
 ///
 // Generic callback structure used for asynchronous completion.
 ///
-typedef struct _cef_completion_handler_t {
+typedef struct _cef_completion_callback_t {
   ///
   // Base structure.
   ///
-  cef_base_t base;
+  cef_base_ref_counted_t base;
 
   ///
   // Method that will be called once the task is complete.
   ///
-  void (CEF_CALLBACK *on_complete)(struct _cef_completion_handler_t* self);
-} cef_completion_handler_t;
+  void (CEF_CALLBACK *on_complete)(struct _cef_completion_callback_t* self);
+} cef_completion_callback_t;
 
 
 #ifdef __cplusplus