| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
http://codereview.chromium.org/155272
http://codereview.chromium.org/149266
Next drop of V8 will get both.
|
|
|
|
|
|
|
| |
http://code.google.com/p/v8/source/detail?r=2400
http://code.google.com/p/v8/source/detail?r=2399
Our next dropin will get both fixes.
|
|
|
|
| |
Also changed compilation generation to 1 on ARM, the same change is made into V8 trunk.
|
|
|
|
|
| |
Snapshotting can be turned on by adding ENABLE_V8_SNAPSHOT in buildspec.mk file.
It is off by default. When it is turned on, the binary size is increased by about 370K, it only saves the first cold startup time of browser (or first time using JavaScript).
|
|
|
|
| |
http://v8.googlecode.com/svn/branches/bleeding_edge@2313
|
| |
|
|
|
|
| |
I am upstreaming the change to v8 code.
|
|
|
|
|
| |
From: "http://v8.googlecode.com/svn/trunk@2121",
It matches "svn://chrome-svn/chrome/branches/187/src@18043"
|
|
|
|
| |
Plan to drop who v8 src in this directory as v8/
|
|
|
|
|
|
| |
-- Most changes follow Chrome's changes in the same area
-- I needed to update the CodeGeneratorV8.pm to the latest version
-- I needed to deprecate v8_utility.h and replace it with V8Utilities.h/cpp
|
|\
| |
| |
| |
| | |
* changes:
Fix memory leaks in Java binding and some code cleanup.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
WebCoreFrameBridge.cpp needs to release NPObject to get proper ref count
because the way V8 binding works.
JObjectWraper holds a weak reference to the Java object to break cycles.
Also fix ScriptController::haveWindowShell to match KJS build, this should be
upstreamed to Chrome project (I am going to do it).
The binding does not use weak reference to hold Java objects, currently
it does not create cycles between Java and JavaScript objects. I didn't see
it is an issue here. A future work is to add logging/debugging code to
make sure global Java references are dropped.
|
|\ \
| |/
|/|
| |
| | |
* changes:
Enable Database API V8 bindings.
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
| |
Chrome fix is here. http://codereview.chromium.org/100242
and the description:
http://code.google.com/p/chromium/issues/detail?id=11264
Integer 0 and -1 have special meaning in HashMap<int, ...>, both cannot be used
as key.
Specially filter out these two keys.
|
|
|
|
|
| |
Hook up plugin with V8 binding. You can take the patch and play on your local
machine. It is almost there, I need do more testing.
|
|
|
|
|
| |
Chrome side fix is waiting for review, tested already.
This should allow us to debug Gears issue.
|
|
|
|
| |
Make a new thread initialization V8::initializeThreading similar to JSC::initializeThreading.
|
|
|
|
| |
Picked up several new files from Chrome port.
|
|
Sync'ed at Chromium trunk r12846.
http://src.chromium.org/viewvc/chrome?view=rev&revision=12846
|