summaryrefslogtreecommitdiffstats
path: root/V8Binding/binding
Commit message (Collapse)AuthorAgeFilesLines
* Adds ScriptController::initializeThreading(), to allow initializeThreading() ↵Steve Block2009-10-272-85/+0
| | | | | | | | | | to be used with both JSC and V8 without the use of ifdefs. See https://bugs.webkit.org/show_bug.cgi?id=30678 This has now been upstreamed to webkit.org, so submitting to Android to avoid future merge conflicts. Change-Id: Ia17a9f02060f04b11a8bffa367164162775516ba
* Remove XPathNSResolver from the Android build.Steve Block2009-10-262-123/+0
| | | | | | Also remove a few other unnnecessary files from the JSC Makefile. Change-Id: I3788a1e3f60941e9712b4c4345ba09fa0a5ad390
* Continue with linker error fixes.Ben Murdoch2009-08-172-0/+85
|
* Merge change 20934 into master-webkit-mergeAndroid (Google) Code Review2009-08-1224-3046/+0
|\ | | | | | | | | * changes: Merge half of V8Binding/binding
| * Merge half of V8Binding/bindingAndrei Popescu2009-08-1224-3046/+0
| |
* | r47029: Merge V8Index and V8Proxy.Ben Murdoch2009-08-124-5177/+0
|/
* Add V8 locks at the v8 entry points for use with workers.Andrei Popescu2009-08-053-2/+30
|
* Android specifics for 'Removes uneccessary IDL files for Geolocation ↵Steve Block2009-07-242-2/+0
| | | | permissions'.
* Add TODO(andreip) to those v8 binding files that have Android-specific ↵Andrei Popescu2009-07-219-3/+27
| | | | modifications that may need fixing/upstreaming/etc
* Add indexed getter for TouchList.Feng Qian2009-07-181-1/+8
| | | | http://maps.google.com/maps/m uses TouchEvent.touches[i], which requires a customized index getter.
* Initialize context if a frame had an empty global object.Feng Qian2009-07-171-1/+3
| | | | | When a frame navigates to a new page, the global object is detached from its old context. However, if the new page has no JavaScript, its new context is not initialized. If another page kept a reference to the global object of the old page and tries to access the new page, it will fail because the context of new page is not initialized so the global object is connected to a real context.
* Fix a memory leak caused by the binding code.Feng Qian2009-07-101-7/+1
| | | | | | Old code reinitialize a context when a frame loading a new page, even when the page does not have JavaScript. It also initializes an empty context when before an iframe is destroyed. A fix is made to Chromium project (not it is in WebKit), our next merge should pick up this fix.
* Add instrumentation for V8.Grace Kloba2009-07-082-0/+52
|
* Fix TouchEvent binding.Feng Qian2009-06-291-0/+4
| | | | TouchEvent was treated as generic UIEvent, which does not have 'touches' property. That's why maps api demo does not work. This CL treats TouchEvent properly in the binding code.
* Implement V8 bindings for DOM Storage.Ben Murdoch2009-06-268-850/+42
|
* Merged changed from Chromium r18043.Feng Qian2009-06-1925-3286/+732
| | | | Need to delete V8MessagePortCustom.cpp.
* Renaming bindings to binding.Feng Qian2009-06-1941-0/+11599
Also updated makefiles.