Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Side by Side Diff: Source/web/InspectorFrontendClientImpl.cpp

Issue 304353015: Remove unused Isolate* parameters from toV8Context() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/inspector/InspectorOverlay.cpp ('k') | Source/web/WebDevToolsFrontendImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorOverlay.cpp ('k') | Source/web/WebDevToolsFrontendImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698