From ae2389cff9a7b2fc1e6d300abbe34febb138aa94 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 14 Jun 2012 21:40:45 -0700 Subject: [PATCH] Make path watching fields private --- Atom-Linux/native_handler.h | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Atom-Linux/native_handler.h b/Atom-Linux/native_handler.h index 797850a5f..7d879a108 100644 --- a/Atom-Linux/native_handler.h +++ b/Atom-Linux/native_handler.h @@ -27,14 +27,6 @@ public: std::string path; - int notifyFd; - - unsigned long int idCounter; - - std::map > pathCallbacks; - - std::map pathDescriptors; - virtual bool Execute(const CefString& name, CefRefPtr object, const CefV8ValueList& arguments, CefRefPtr& retval, CefString& exception); @@ -45,6 +37,15 @@ IMPLEMENT_REFCOUNTING(NativeHandler) ; private: + + int notifyFd; + + unsigned long int idCounter; + + std::map > pathCallbacks; + + std::map pathDescriptors; + void Exists(const CefString& name, CefRefPtr object, const CefV8ValueList& arguments, CefRefPtr& retval, CefString& exception);