// Copyright (c) 2018 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #ifndef ATOM_BROWSER_API_ATOM_API_NET_LOG_H_ #define ATOM_BROWSER_API_ATOM_API_NET_LOG_H_ #include #include "brightray/browser/net_log.h" #include "native_mate/wrappable.h" namespace atom { namespace api { class NetLog : public mate::Wrappable { public: static v8::Local Create(v8::Isolate* isolate); static void BuildPrototype(v8::Isolate* isolate, v8::Local prototype); void StartLogging(mate::Arguments* args); bool IsCurrentlyLogging(); base::FilePath::StringType GetCurrentlyLoggingPath(); void StopLogging(mate::Arguments* args); protected: explicit NetLog(v8::Isolate* isolate); ~NetLog() override; private: brightray::NetLog* net_log_; DISALLOW_COPY_AND_ASSIGN(NetLog); }; } // namespace api } // namespace atom #endif // ATOM_BROWSER_API_ATOM_API_NET_LOG_H_