mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Remove DISALLOW_ macro from libcef/ (see issue #3234)
Also perform related C++ cleanup: - Use =default instead of {} for default implementations of constructors/destructors. - Replace typedef with using.
This commit is contained in:
@@ -174,7 +174,7 @@ class CefV8IsolateManager {
|
||||
v8::Isolate* isolate_;
|
||||
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
|
||||
|
||||
typedef std::map<int, scoped_refptr<CefV8ContextState>> ContextMap;
|
||||
using ContextMap = std::map<int, scoped_refptr<CefV8ContextState>>;
|
||||
ContextMap context_map_;
|
||||
|
||||
// Used for globally tracked objects that are not associated with a particular
|
||||
|
Reference in New Issue
Block a user