Merge "Temporarily disable debugger support on V8 due to a crash"
diff --git a/WebCore/bindings/v8/V8Proxy.cpp b/WebCore/bindings/v8/V8Proxy.cpp
index 9b1fff5..d13289e 100644
--- a/WebCore/bindings/v8/V8Proxy.cpp
+++ b/WebCore/bindings/v8/V8Proxy.cpp
@@ -818,10 +818,13 @@
     frameSourceLine = v8::Local<v8::Function>::Cast(v8UtilityContext->Global()->Get(v8::String::New("frameSourceLine")));
     if (frameSourceLine.IsEmpty())
         return false;
+#if 0
+    // TODO(andreip): re-enable this after experimenting with partial snapshots
     v8::Handle<v8::Value> value = v8::Debug::Call(frameSourceLine);
     if (value.IsEmpty())
         return false;
     result = value->Int32Value();
+#endif
     return true;
 }
 
@@ -836,10 +839,13 @@
     frameSourceName = v8::Local<v8::Function>::Cast(v8UtilityContext->Global()->Get(v8::String::New("frameSourceName")));
     if (frameSourceName.IsEmpty())
         return false;
+#if 0
+    // TODO(andreip): re-enable this after experimenting with partial snapshots
     v8::Handle<v8::Value> value = v8::Debug::Call(frameSourceName);
     if (value.IsEmpty())
         return false;
     result = toWebCoreString(value);
+#endif
     return true;
 }