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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 namespace blink { | 47 namespace blink { |
48 | 48 |
49 InspectorFrontendClientImpl::InspectorFrontendClientImpl(Page* frontendPage, Web
DevToolsFrontendClient* client, WebDevToolsFrontendImpl* frontend) | 49 InspectorFrontendClientImpl::InspectorFrontendClientImpl(Page* frontendPage, Web
DevToolsFrontendClient* client, WebDevToolsFrontendImpl* frontend) |
50 : m_frontendPage(frontendPage) | 50 : m_frontendPage(frontendPage) |
51 , m_client(client) | 51 , m_client(client) |
52 { | 52 { |
53 } | 53 } |
54 | 54 |
55 InspectorFrontendClientImpl::~InspectorFrontendClientImpl() | 55 InspectorFrontendClientImpl::~InspectorFrontendClientImpl() |
56 { | 56 { |
57 if (m_frontendHost) | 57 ASSERT(!m_frontendHost); |
| 58 } |
| 59 |
| 60 void InspectorFrontendClientImpl::trace(Visitor* visitor) |
| 61 { |
| 62 visitor->trace(m_frontendPage); |
| 63 visitor->trace(m_frontendHost); |
| 64 InspectorFrontendClient::trace(visitor); |
| 65 } |
| 66 |
| 67 void InspectorFrontendClientImpl::dispose() |
| 68 { |
| 69 if (m_frontendHost) { |
58 m_frontendHost->disconnectClient(); | 70 m_frontendHost->disconnectClient(); |
| 71 m_frontendHost = nullptr; |
| 72 } |
59 m_client = 0; | 73 m_client = 0; |
60 } | 74 } |
61 | 75 |
62 void InspectorFrontendClientImpl::windowObjectCleared() | 76 void InspectorFrontendClientImpl::windowObjectCleared() |
63 { | 77 { |
64 v8::Isolate* isolate = v8::Isolate::GetCurrent(); | 78 v8::Isolate* isolate = v8::Isolate::GetCurrent(); |
65 ASSERT(m_frontendPage->mainFrame()); | 79 ASSERT(m_frontendPage->mainFrame()); |
66 ScriptState* scriptState = ScriptState::forMainWorld(m_frontendPage->depreca
tedLocalMainFrame()); | 80 ScriptState* scriptState = ScriptState::forMainWorld(m_frontendPage->depreca
tedLocalMainFrame()); |
67 ScriptState::Scope scope(scriptState); | 81 ScriptState::Scope scope(scriptState); |
68 | 82 |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 { | 171 { |
158 m_client->sendMessageToEmbedder(message); | 172 m_client->sendMessageToEmbedder(message); |
159 } | 173 } |
160 | 174 |
161 bool InspectorFrontendClientImpl::isUnderTest() | 175 bool InspectorFrontendClientImpl::isUnderTest() |
162 { | 176 { |
163 return m_client->isUnderTest(); | 177 return m_client->isUnderTest(); |
164 } | 178 } |
165 | 179 |
166 } // namespace blink | 180 } // namespace blink |
OLD | NEW |