summaryrefslogtreecommitdiffstats
path: root/webkit/port
diff options
context:
space:
mode:
authorericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-08 00:55:46 +0000
committerericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-08 00:55:46 +0000
commit955a524eda90beba0d55315fed773cbc5cf81619 (patch)
tree71f691d1f95a4efa0251b84f4ee3667cb85a2de3 /webkit/port
parent4a814c14d954d2b955a82fb6a339f6d0ce414315 (diff)
downloadchromium_src-955a524eda90beba0d55315fed773cbc5cf81619.zip
chromium_src-955a524eda90beba0d55315fed773cbc5cf81619.tar.gz
chromium_src-955a524eda90beba0d55315fed773cbc5cf81619.tar.bz2
Don't call ChromiumBridge::initV8CounterFunction() since it asserts not reached.
This will need to be looked at for a real fix. Maybe we should put this back in chromium_bridge_impl.cc ? TBR=darin Review URL: http://codereview.chromium.org/40279 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11213 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port')
-rw-r--r--webkit/port/bindings/v8/v8_proxy.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/port/bindings/v8/v8_proxy.cpp b/webkit/port/bindings/v8/v8_proxy.cpp
index aa2ecc6..a399955 100644
--- a/webkit/port/bindings/v8/v8_proxy.cpp
+++ b/webkit/port/bindings/v8/v8_proxy.cpp
@@ -2306,7 +2306,8 @@ void V8Proxy::InitContextIfNeeded()
// Install counters handler with V8.
static bool v8_counters_initialized = false;
if (!v8_counters_initialized) {
- ChromiumBridge::initV8CounterFunction();
+ // TODO(eroman):
+ //ChromiumBridge::initV8CounterFunction();
v8_counters_initialized = true;
}