mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 135.0.7049.0 (#1427262)
This commit is contained in:
@@ -159,7 +159,7 @@ class CefValueControllerThreadSafe : public CefValueController {
|
||||
locked_thread_id_ = base::PlatformThread::CurrentId();
|
||||
}
|
||||
void unlock() override NO_THREAD_SAFETY_ANALYSIS {
|
||||
locked_thread_id_ = 0;
|
||||
locked_thread_id_ = base::PlatformThreadId();
|
||||
lock_.Release();
|
||||
}
|
||||
bool locked() override {
|
||||
@@ -169,7 +169,7 @@ class CefValueControllerThreadSafe : public CefValueController {
|
||||
|
||||
private:
|
||||
base::Lock lock_;
|
||||
base::PlatformThreadId locked_thread_id_ = 0;
|
||||
base::PlatformThreadId locked_thread_id_;
|
||||
};
|
||||
|
||||
// Non-thread-safe access control implementation.
|
||||
|
Reference in New Issue
Block a user