blob: 3733d6af43ec1ad9ad6ee4f712a078880ec4271f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/browser/web/dom_altering_lock.h"
#include "base/logging.h"
#include "ios/web/public/web_thread.h"
DEFINE_WEB_STATE_USER_DATA_KEY(DOMAlteringLock);
DOMAlteringLock::DOMAlteringLock(web::WebState* web_state) {
}
DOMAlteringLock::~DOMAlteringLock() {
}
void DOMAlteringLock::Acquire(id<DOMAltering> feature,
ProceduralBlockWithBool lockAction) {
DCHECK_CURRENTLY_ON(web::WebThread::UI);
if (current_dom_altering_feature_.get() == feature) {
lockAction(YES);
return;
}
if (current_dom_altering_feature_) {
if (![current_dom_altering_feature_ canReleaseDOMLock]) {
lockAction(NO);
return;
}
[current_dom_altering_feature_ releaseDOMLockWithCompletionHandler:^() {
DCHECK_CURRENTLY_ON(web::WebThread::UI);
DCHECK(current_dom_altering_feature_.get() == nil)
<< "The lock must be released before calling the completion handler.";
current_dom_altering_feature_.reset(feature);
lockAction(YES);
}];
return;
}
current_dom_altering_feature_.reset(feature);
lockAction(YES);
}
// Release the lock on the DOM tree.
void DOMAlteringLock::Release(id<DOMAltering> feature) {
DCHECK_CURRENTLY_ON(web::WebThread::UI);
if (current_dom_altering_feature_.get() == feature)
current_dom_altering_feature_.reset();
}
|