electron/browser/api
Cheng Zhao d723173bc7 Initial RPC API implementation.
Basic usage is:
remote = require 'remote'
Window = remote.require 'window'
w = new Window { width: 800, height: 600 }

Still need to do:
* Beter support for Array type.
* Remote objects should cheat devtools.
* Support cross-process callbacks.
2013-04-24 16:43:01 +08:00
..
lib Initial RPC API implementation. 2013-04-24 16:43:01 +08:00
atom_api_browser_ipc.cc small tune of IPC interface. 2013-04-23 20:57:14 +08:00
atom_api_browser_ipc.h Use require('ipc').send to communicate between browser and renderer. 2013-04-23 12:18:07 +08:00
atom_api_event.cc Emulate DOM's Event class. 2013-04-18 21:42:20 +08:00
atom_api_event.h Emulate DOM's Event class. 2013-04-18 21:42:20 +08:00
atom_api_event_emitter.cc Record all objects created by API in browser. 2013-04-20 21:52:46 +08:00
atom_api_event_emitter.h Record all objects created by API in browser. 2013-04-20 21:52:46 +08:00
atom_api_objects_registry.cc Record all objects created by API in browser. 2013-04-20 21:52:46 +08:00
atom_api_objects_registry.h Record all objects created by API in browser. 2013-04-20 21:52:46 +08:00
atom_api_recorded_object.cc Remove recorded object from registry in desturctor. 2013-04-21 16:27:30 +08:00
atom_api_recorded_object.h Record all objects created by API in browser. 2013-04-20 21:52:46 +08:00
atom_api_window.cc Add getRoutingID and getProcessID for window API. 2013-04-23 17:21:34 +08:00
atom_api_window.h Add getRoutingID and getProcessID for window API. 2013-04-23 17:21:34 +08:00
atom_browser_bindings.cc Add ipc.sendSync in renderer. 2013-04-23 21:52:19 +08:00
atom_browser_bindings.h Add ipc.sendSync in renderer. 2013-04-23 21:52:19 +08:00