]> git.sesse.net Git - casparcg/blobdiff - dependencies64/cef/linux/include/cef_base.h
Upgrade CEF to 3.3029.1611.g44e39a8 / Chromium 58.0.3029.81.
[casparcg] / dependencies64 / cef / linux / include / cef_base.h
similarity index 54%
rename from dependencies64/cef/include/cef_base.h
rename to dependencies64/cef/linux/include/cef_base.h
index bc284f72ea0cf0502c41d5e6933fbbcfefdb5ee8..c152cf06d5298dbeb434ffe43ed214a594969f6d 100644 (file)
 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-//
-// ---------------------------------------------------------------------------
-//
-// The contents of this file must follow a specific format in order to
-// support the CEF translator tool. See the translator.README.txt file in the
-// tools directory for more information.
-//
 
 
 #ifndef CEF_INCLUDE_CEF_BASE_H_
 #define CEF_INCLUDE_CEF_BASE_H_
 #pragma once
 
-#include "include/internal/cef_build.h"
+#include "include/base/cef_atomic_ref_count.h"
+#include "include/base/cef_build.h"
+#include "include/base/cef_macros.h"
+
+// Bring in common C++ type definitions used by CEF consumers.
 #include "include/internal/cef_ptr.h"
 #include "include/internal/cef_types_wrappers.h"
-
-// Bring in platform-specific definitions.
 #if defined(OS_WIN)
 #include "include/internal/cef_win.h"
 #elif defined(OS_MACOSX)
 #endif
 
 ///
-// Interface defining the reference count implementation methods. All framework
-// classes must extend the CefBase class.
+// All ref-counted framework classes must extend this class.
 ///
-class CefBase {
+class CefBaseRefCounted {
  public:
   ///
-  // The AddRef method increments the reference count for the object. It should
-  // be called for every new copy of a pointer to a given object. The resulting
-  // reference count value is returned and should be used for diagnostic/testing
-  // purposes only.
+  // Called to increment the reference count for the object. Should be called
+  // for every new copy of a pointer to a given object.
   ///
-  virtual int AddRef() =0;
+  virtual void AddRef() const =0;
 
   ///
-  // The Release method decrements the reference count for the object. If the
-  // reference count on the object falls to 0, then the object should free
-  // itself from memory.  The resulting reference count value is returned and
-  // should be used for diagnostic/testing purposes only.
+  // Called to decrement the reference count for the object. Returns true if
+  // the reference count is 0, in which case the object should self-delete.
   ///
-  virtual int Release() =0;
+  virtual bool Release() const =0;
 
   ///
-  // Return the current number of references.
+  // Returns true if the reference count is 1.
   ///
-  virtual int GetRefCt() =0;
+  virtual bool HasOneRef() const =0;
 
  protected:
-  virtual ~CefBase() {}
+  virtual ~CefBaseRefCounted() {}
 };
 
+///
+// All scoped framework classes must extend this class.
+///
+class CefBaseScoped {
+ public:
+  virtual ~CefBaseScoped() {}
+};
 
 ///
 // Class that implements atomic reference counting.
 ///
 class CefRefCount {
  public:
-  CefRefCount() : refct_(0) {}
+  CefRefCount() : ref_count_(0) {}
 
   ///
-  // Atomic reference increment.
+  // Increment the reference count.
   ///
-  int AddRef() {
-    return CefAtomicIncrement(&refct_);
+  void AddRef() const {
+    base::AtomicRefCountInc(&ref_count_); 
   }
 
   ///
-  // Atomic reference decrement. Delete the object when no references remain.
+  // Decrement the reference count. Returns true if the reference count is 0.
   ///
-  int Release() {
-    return CefAtomicDecrement(&refct_);
+  bool Release() const {
+    return !base::AtomicRefCountDec(&ref_count_);
   }
 
   ///
-  // Return the current number of references.
+  // Returns true if the reference count is 1.
   ///
-  int GetRefCt() { return refct_; }
+  bool HasOneRef() const {
+    return base::AtomicRefCountIsOne(&ref_count_);
+  }
 
  private:
-  long refct_;  // NOLINT(runtime/int)
+  mutable base::AtomicRefCount ref_count_;
+  DISALLOW_COPY_AND_ASSIGN(CefRefCount);
 };
 
 ///
@@ -120,22 +120,54 @@ class CefRefCount {
 ///
 #define IMPLEMENT_REFCOUNTING(ClassName)            \
   public:                                           \
-    int AddRef() { return refct_.AddRef(); }        \
-    int Release() {                                 \
-      int retval = refct_.Release();                \
-      if (retval == 0)                              \
-        delete this;                                \
-      return retval;                                \
+    void AddRef() const OVERRIDE {                  \
+      ref_count_.AddRef();                          \
+    }                                               \
+    bool Release() const OVERRIDE {                 \
+      if (ref_count_.Release()) {                   \
+        delete static_cast<const ClassName*>(this); \
+        return true;                                \
+      }                                             \
+      return false;                                 \
+    }                                               \
+    bool HasOneRef() const OVERRIDE {               \
+      return ref_count_.HasOneRef();                \
     }                                               \
-    int GetRefCt() { return refct_.GetRefCt(); }    \
   private:                                          \
-    CefRefCount refct_;
+    CefRefCount ref_count_;
 
 ///
 // Macro that provides a locking implementation. Use the Lock() and Unlock()
 // methods to protect a section of code from simultaneous access by multiple
 // threads. The AutoLock class is a helper that will hold the lock while in
 // scope.
+//
+// THIS MACRO IS DEPRECATED. Use an explicit base::Lock member variable and
+// base::AutoLock instead. For example:
+//
+// #include "include/base/cef_lock.h"
+//
+// // Class declaration.
+// class MyClass : public CefBaseRefCounted {
+//  public:
+//   MyClass() : value_(0) {}
+//   // Method that may be called on multiple threads.
+//   void IncrementValue();
+//  private:
+//   // Value that may be accessed on multiple theads.
+//   int value_;
+//   // Lock used to protect access to |value_|.
+//   base::Lock lock_;
+//   IMPLEMENT_REFCOUNTING(MyClass);
+// };
+//
+// // Class implementation.
+// void MyClass::IncrementValue() {
+//   // Acquire the lock for the scope of this method.
+//   base::AutoLock lock_scope(lock_);
+//   // |value_| can now be modified safely.
+//   value_++;
+// }
 ///
 #define IMPLEMENT_LOCKING(ClassName)                                       \
   public:                                                                  \
@@ -145,10 +177,11 @@ class CefRefCount {
       ~AutoLock() { base_->Unlock(); }                                     \
      private:                                                              \
       ClassName* base_;                                                    \
+      DISALLOW_COPY_AND_ASSIGN(AutoLock);                                  \
     };                                                                     \
-    void Lock() { critsec_.Lock(); }                                       \
-    void Unlock() { critsec_.Unlock(); }                                   \
+    void Lock() { lock_.Acquire(); }                                       \
+    void Unlock() { lock_.Release(); }                                     \
   private:                                                                 \
-    CefCriticalSection critsec_;
+    base::Lock lock_;
 
 #endif  // CEF_INCLUDE_CEF_BASE_H_