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 "bindings/core/v8/V8DOMActivityLogger.h" | 6 #include "bindings/core/v8/V8DOMActivityLogger.h" |
7 | 7 |
8 #include "bindings/core/v8/V8Binding.h" | 8 #include "bindings/core/v8/V8Binding.h" |
9 #include "platform/weborigin/KURL.h" | 9 #include "platform/weborigin/KURL.h" |
10 #include "wtf/HashMap.h" | 10 #include "wtf/HashMap.h" |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 85 |
86 return contextData->activityLogger(); | 86 return contextData->activityLogger(); |
87 } | 87 } |
88 | 88 |
89 V8DOMActivityLogger* V8DOMActivityLogger::currentActivityLoggerIfIsolatedWorld() | 89 V8DOMActivityLogger* V8DOMActivityLogger::currentActivityLoggerIfIsolatedWorld() |
90 { | 90 { |
91 v8::Isolate* isolate = v8::Isolate::GetCurrent(); | 91 v8::Isolate* isolate = v8::Isolate::GetCurrent(); |
92 if (!isolate->InContext()) | 92 if (!isolate->InContext()) |
93 return 0; | 93 return 0; |
94 | 94 |
| 95 v8::HandleScope handleScope(isolate); |
95 v8::Handle<v8::Context> context = isolate->GetCurrentContext(); | 96 v8::Handle<v8::Context> context = isolate->GetCurrentContext(); |
96 if (context.IsEmpty() || !toDOMWindow(context)) | 97 if (context.IsEmpty() || !toDOMWindow(context)) |
97 return 0; | 98 return 0; |
98 | 99 |
99 ScriptState* scriptState = ScriptState::from(context); | 100 ScriptState* scriptState = ScriptState::from(context); |
100 if (!scriptState->world().isIsolatedWorld()) | 101 if (!scriptState->world().isIsolatedWorld()) |
101 return 0; | 102 return 0; |
102 | 103 |
103 V8PerContextData* contextData = scriptState->perContextData(); | 104 V8PerContextData* contextData = scriptState->perContextData(); |
104 if (!contextData) | 105 if (!contextData) |
105 return 0; | 106 return 0; |
106 | 107 |
107 return contextData->activityLogger(); | 108 return contextData->activityLogger(); |
108 } | 109 } |
109 | 110 |
110 } // namespace blink | 111 } // namespace blink |
OLD | NEW |