From a5f72c8a2d6d74b4985999cae37ff384075a5762 Mon Sep 17 00:00:00 2001 From: Corey Johnson & Nathan Sobo Date: Wed, 23 Jan 2013 12:14:22 -0700 Subject: [PATCH] :lipstick: --- native/v8_extensions/native.h | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/native/v8_extensions/native.h b/native/v8_extensions/native.h index 629f2803a..56722d7ab 100644 --- a/native/v8_extensions/native.h +++ b/native/v8_extensions/native.h @@ -5,24 +5,22 @@ namespace v8_extensions { class Native : public CefV8Handler { -public: + public: + static void CreateContextBinding(CefRefPtr context); + virtual bool Execute(const CefString& name, + CefRefPtr object, + const CefV8ValueList& arguments, + CefRefPtr& retval, + CefString& exception) OVERRIDE; - static void CreateContextBinding(CefRefPtr context); - virtual bool Execute(const CefString& name, - CefRefPtr object, - const CefV8ValueList& arguments, - CefRefPtr& retval, - CefString& exception) OVERRIDE; - - // Provide the reference counting implementation for this class. - IMPLEMENT_REFCOUNTING(Native); - -private: - Native(); - Native(Native const&); - static CefRefPtr GetInstance(); - void operator=(Native const&); - std::string windowState; -}; + // Provide the reference counting implementation for this class. + IMPLEMENT_REFCOUNTING(Native); + private: + static CefRefPtr GetInstance(); + Native(); + Native(Native const&); + void operator=(Native const&); + std::string windowState; + }; }