| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 { | 56 { |
| 57 if (m_frontendHost) | 57 if (m_frontendHost) |
| 58 m_frontendHost->disconnectClient(); | 58 m_frontendHost->disconnectClient(); |
| 59 m_client = 0; | 59 m_client = 0; |
| 60 } | 60 } |
| 61 | 61 |
| 62 void InspectorFrontendClientImpl::windowObjectCleared() | 62 void InspectorFrontendClientImpl::windowObjectCleared() |
| 63 { | 63 { |
| 64 v8::Isolate* isolate = v8::Isolate::GetCurrent(); | 64 v8::Isolate* isolate = v8::Isolate::GetCurrent(); |
| 65 v8::HandleScope handleScope(isolate); | 65 v8::HandleScope handleScope(isolate); |
| 66 v8::Handle<v8::Context> frameContext = m_frontendPage->mainFrame() ? toV8Con
text(isolate, m_frontendPage->mainFrame(), DOMWrapperWorld::mainWorld()) : v8::L
ocal<v8::Context>(); | 66 v8::Handle<v8::Context> frameContext = m_frontendPage->mainFrame() ? toV8Con
text(m_frontendPage->mainFrame(), DOMWrapperWorld::mainWorld()) : v8::Local<v8::
Context>(); |
| 67 v8::Context::Scope contextScope(frameContext); | 67 v8::Context::Scope contextScope(frameContext); |
| 68 | 68 |
| 69 if (m_frontendHost) | 69 if (m_frontendHost) |
| 70 m_frontendHost->disconnectClient(); | 70 m_frontendHost->disconnectClient(); |
| 71 m_frontendHost = InspectorFrontendHost::create(this, m_frontendPage); | 71 m_frontendHost = InspectorFrontendHost::create(this, m_frontendPage); |
| 72 v8::Handle<v8::Value> frontendHostObj = toV8(m_frontendHost.get(), v8::Handl
e<v8::Object>(), frameContext->GetIsolate()); | 72 v8::Handle<v8::Value> frontendHostObj = toV8(m_frontendHost.get(), v8::Handl
e<v8::Object>(), frameContext->GetIsolate()); |
| 73 v8::Handle<v8::Object> global = frameContext->Global(); | 73 v8::Handle<v8::Object> global = frameContext->Global(); |
| 74 | 74 |
| 75 global->Set(v8::String::NewFromUtf8(isolate, "InspectorFrontendHost"), front
endHostObj); | 75 global->Set(v8::String::NewFromUtf8(isolate, "InspectorFrontendHost"), front
endHostObj); |
| 76 ScriptController* scriptController = m_frontendPage->mainFrame() ? &m_fronte
ndPage->mainFrame()->script() : 0; | 76 ScriptController* scriptController = m_frontendPage->mainFrame() ? &m_fronte
ndPage->mainFrame()->script() : 0; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 { | 157 { |
| 158 m_client->sendMessageToEmbedder(message); | 158 m_client->sendMessageToEmbedder(message); |
| 159 } | 159 } |
| 160 | 160 |
| 161 bool InspectorFrontendClientImpl::isUnderTest() | 161 bool InspectorFrontendClientImpl::isUnderTest() |
| 162 { | 162 { |
| 163 return m_client->isUnderTest(); | 163 return m_client->isUnderTest(); |
| 164 } | 164 } |
| 165 | 165 |
| 166 } // namespace blink | 166 } // namespace blink |
| OLD | NEW |