OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "config.h" | 5 #include "config.h" |
6 #include "platform/ScriptForbiddenScope.h" | 6 #include "platform/ScriptForbiddenScope.h" |
7 | 7 |
8 #include "wtf/Assertions.h" | 8 #include "wtf/Assertions.h" |
9 #include "wtf/MainThread.h" | 9 #include "wtf/MainThread.h" |
10 | 10 |
11 namespace WebCore { | 11 namespace WebCore { |
12 | 12 |
13 #if ASSERT_ENABLED | 13 #if ENABLE(ASSERT) |
14 | 14 |
15 static unsigned s_scriptForbiddenCount = 0; | 15 static unsigned s_scriptForbiddenCount = 0; |
16 | 16 |
17 ScriptForbiddenScope::ScriptForbiddenScope() | 17 ScriptForbiddenScope::ScriptForbiddenScope() |
18 { | 18 { |
19 // FIXME: Support non-main threads. | 19 // FIXME: Support non-main threads. |
20 if (isMainThread()) | 20 if (isMainThread()) |
21 ++s_scriptForbiddenCount; | 21 ++s_scriptForbiddenCount; |
22 } | 22 } |
23 | 23 |
(...skipping 14 matching lines...) Expand all Loading... |
38 } | 38 } |
39 | 39 |
40 ScriptForbiddenScope::AllowUserAgentScript::~AllowUserAgentScript() | 40 ScriptForbiddenScope::AllowUserAgentScript::~AllowUserAgentScript() |
41 { | 41 { |
42 ASSERT(!s_scriptForbiddenCount); | 42 ASSERT(!s_scriptForbiddenCount); |
43 } | 43 } |
44 | 44 |
45 #endif | 45 #endif |
46 | 46 |
47 } // namespace WebCore | 47 } // namespace WebCore |
OLD | NEW |