forked from ashea-code/BluBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcef_base.patch
23 lines (23 loc) · 1.15 KB
/
cef_base.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- cef_base.h 2016-05-05 11:36:43.703458900 -0400
+++ cef_base.h 2016-05-09 13:29:12.757864200 -0400
@@ -113,17 +113,17 @@
///
#define IMPLEMENT_REFCOUNTING(ClassName) \
public: \
- void AddRef() const OVERRIDE { \
+ void AddRef() const override { \
ref_count_.AddRef(); \
} \
- bool Release() const OVERRIDE { \
+ bool Release() const override { \
if (ref_count_.Release()) { \
delete static_cast<const ClassName*>(this); \
return true; \
} \
return false; \
} \
- bool HasOneRef() const OVERRIDE { \
+ bool HasOneRef() const override { \
return ref_count_.HasOneRef(); \
} \
private: \