No more C++ RecordedObject and ObjectsRegistry code.

All RPC API will be implemented in pure javascript.
This commit is contained in:
Cheng Zhao 2013-04-25 15:02:58 +08:00
parent d723173bc7
commit 0692776020
9 changed files with 9 additions and 161 deletions

View file

@ -10,10 +10,6 @@
namespace atom {
namespace api {
class ObjectsRegistry;
}
class AtomBrowserContext : public brightray::BrowserContext {
public:
AtomBrowserContext();
@ -21,13 +17,7 @@ class AtomBrowserContext : public brightray::BrowserContext {
static AtomBrowserContext* Get();
api::ObjectsRegistry* objects_registry() const {
return objects_registry_.get();
}
private:
scoped_ptr<api::ObjectsRegistry> objects_registry_;
DISALLOW_COPY_AND_ASSIGN(AtomBrowserContext);
};