d663b4eaee
* chore: fix cpplint 'include_what_you_use' warnings Typically by including <memory>, <utility> etc. * chore: fix 'static/global string constant' warning Use C style strings instead of std::string. Style guide forbids non-trivial static / global variables. https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables /home/charles/electron/electron-gn/src/electron/script/cpplint.js * refactor: remove global string variables. Fix 'global string variables are not permitted' linter warnings by using the base::NoDestructor<> wrapper to make it explicit that these variables are never destroyed. The style guide's take on globals with nontrivial destructors: https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables * fix: initializer error introduced in last commit * fix: remove WIP file that was included by accident * fix: include order * fix: include order * fix: include order * fix: include order, again
44 lines
1 KiB
C++
44 lines
1 KiB
C++
// Copyright (c) 2015 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef BRIGHTRAY_BROWSER_NET_LOG_H_
|
|
#define BRIGHTRAY_BROWSER_NET_LOG_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "base/callback.h"
|
|
#include "base/files/file_path.h"
|
|
#include "net/log/net_log.h"
|
|
|
|
namespace net {
|
|
class FileNetLogObserver;
|
|
}
|
|
|
|
namespace brightray {
|
|
|
|
class NetLog : public net::NetLog {
|
|
public:
|
|
NetLog();
|
|
~NetLog() override;
|
|
|
|
void StartLogging();
|
|
void StopLogging();
|
|
|
|
void StartDynamicLogging(const base::FilePath& path);
|
|
bool IsDynamicLogging();
|
|
base::FilePath GetDynamicLoggingPath();
|
|
void StopDynamicLogging(base::OnceClosure callback = base::OnceClosure());
|
|
|
|
private:
|
|
// This observer handles writing NetLogs.
|
|
std::unique_ptr<net::FileNetLogObserver> file_net_log_observer_;
|
|
std::unique_ptr<net::FileNetLogObserver> dynamic_file_net_log_observer_;
|
|
base::FilePath dynamic_file_net_log_path_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(NetLog);
|
|
};
|
|
|
|
} // namespace brightray
|
|
|
|
#endif // BRIGHTRAY_BROWSER_NET_LOG_H_
|