mirror of
https://github.com/atom/atom.git
synced 2026-01-23 22:08:08 -05:00
Make path watching fields private
This commit is contained in:
@@ -27,14 +27,6 @@ public:
|
||||
|
||||
std::string path;
|
||||
|
||||
int notifyFd;
|
||||
|
||||
unsigned long int idCounter;
|
||||
|
||||
std::map<int, std::map<std::string, CallbackContext> > pathCallbacks;
|
||||
|
||||
std::map<std::string, int> pathDescriptors;
|
||||
|
||||
virtual bool Execute(const CefString& name, CefRefPtr<CefV8Value> object,
|
||||
const CefV8ValueList& arguments, CefRefPtr<CefV8Value>& retval,
|
||||
CefString& exception);
|
||||
@@ -45,6 +37,15 @@ IMPLEMENT_REFCOUNTING(NativeHandler)
|
||||
;
|
||||
|
||||
private:
|
||||
|
||||
int notifyFd;
|
||||
|
||||
unsigned long int idCounter;
|
||||
|
||||
std::map<int, std::map<std::string, CallbackContext> > pathCallbacks;
|
||||
|
||||
std::map<std::string, int> pathDescriptors;
|
||||
|
||||
void Exists(const CefString& name, CefRefPtr<CefV8Value> object,
|
||||
const CefV8ValueList& arguments, CefRefPtr<CefV8Value>& retval,
|
||||
CefString& exception);
|
||||
|
||||
Reference in New Issue
Block a user