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

Unified Diff: Source/bindings/core/v8/custom/V8InjectedScriptManager.cpp

Issue 462513002: Remove fprintf()s I mis-committed in r179905 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/custom/V8InjectedScriptManager.cpp
diff --git a/Source/bindings/core/v8/custom/V8InjectedScriptManager.cpp b/Source/bindings/core/v8/custom/V8InjectedScriptManager.cpp
index 51dd4beb339d110088be91ebca6165055fd0e24b..1ce710b6e32ef5e672ee2681447f31c1152e3ebd 100644
--- a/Source/bindings/core/v8/custom/V8InjectedScriptManager.cpp
+++ b/Source/bindings/core/v8/custom/V8InjectedScriptManager.cpp
@@ -57,11 +57,8 @@ InjectedScriptManager::CallbackData* InjectedScriptManager::createCallbackData(I
void InjectedScriptManager::removeCallbackData(InjectedScriptManager::CallbackData* callbackData)
{
- fprintf(stderr, "b %p\n", callbackData);
ASSERT(m_callbackDataSet.contains(callbackData));
- fprintf(stderr, "c %p\n", callbackData);
m_callbackDataSet.remove(callbackData);
- fprintf(stderr, "d %p\n", callbackData);
}
static v8::Local<v8::Object> createInjectedScriptHostV8Wrapper(PassRefPtrWillBeRawPtr<InjectedScriptHost> host, InjectedScriptManager* injectedScriptManager, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
@@ -133,7 +130,6 @@ bool InjectedScriptManager::canAccessInspectedWindow(ScriptState* scriptState)
void InjectedScriptManager::setWeakCallback(const v8::WeakCallbackData<v8::Object, InjectedScriptManager::CallbackData>& data)
{
InjectedScriptManager::CallbackData* callbackData = data.GetParameter();
- fprintf(stderr, "a %p\n", callbackData);
callbackData->injectedScriptManager->removeCallbackData(callbackData);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698