From 1c65f5d7d9a01a544fa20ad1a5ef55c31853158e Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Fri, 9 Jan 2015 17:27:30 -0800 Subject: [PATCH] Fix cpplint warning --- brightray/browser/remote_debugging_server.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brightray/browser/remote_debugging_server.h b/brightray/browser/remote_debugging_server.h index ff0e5bcf49..89faf65730 100644 --- a/brightray/browser/remote_debugging_server.h +++ b/brightray/browser/remote_debugging_server.h @@ -16,11 +16,11 @@ class DevToolsHttpHandler; namespace brightray { class RemoteDebuggingServer { -public: + public: RemoteDebuggingServer(const std::string& ip, uint16 port); virtual ~RemoteDebuggingServer(); -private: + private: content::DevToolsHttpHandler* devtools_http_handler_; DISALLOW_COPY_AND_ASSIGN(RemoteDebuggingServer);