adding support for kLogNetLog switch

This commit is contained in:
deepak1556 2015-06-05 20:24:38 +05:30
parent 51bb357405
commit ee6b14d1d8
4 changed files with 108 additions and 1 deletions

View file

@ -0,0 +1,36 @@
// 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 BROWSER_NET_LOG_H_
#define BROWSER_NET_LOG_H_
#include "base/files/file_path.h"
#include "base/files/scoped_file.h"
#include "net/log/net_log.h"
namespace net {
class URLRequestContext;
}
namespace brightray {
class NetLog : public net::NetLog,
public net::NetLog::ThreadSafeObserver {
public:
explicit NetLog(net::URLRequestContext* context);
virtual ~NetLog();
void OnAddEntry(const net::NetLog::Entry& entry) override;
private:
bool added_events_;
scoped_ptr<net::URLRequestContext> context_;
base::ScopedFILE log_file_;
DISALLOW_COPY_AND_ASSIGN(NetLog);
};
} // namespace brightray
#endif // BROWSER_NET_LOG_H_