| Index: net/websockets/websocket_net_log_params.h
|
| ===================================================================
|
| --- net/websockets/websocket_net_log_params.h (revision 142108)
|
| +++ net/websockets/websocket_net_log_params.h (working copy)
|
| @@ -7,33 +7,16 @@
|
| #pragma once
|
|
|
| #include <string>
|
| -#include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| -#include "base/memory/ref_counted.h"
|
| -#include "base/string_split.h"
|
| -#include "base/string_util.h"
|
| -#include "base/stringprintf.h"
|
| -#include "base/values.h"
|
| +#include "net/base/net_export.h"
|
| #include "net/base/net_log.h"
|
|
|
| namespace net {
|
|
|
| -class NET_EXPORT_PRIVATE NetLogWebSocketHandshakeParameter
|
| - : public NetLog::EventParameters {
|
| - public:
|
| - explicit NetLogWebSocketHandshakeParameter(const std::string& headers);
|
| +NET_EXPORT_PRIVATE base::Value* NetLogWebSocketHandshakeCallback(
|
| + const std::string* headers,
|
| + NetLog::LogLevel /* log_level */);
|
|
|
| - virtual Value* ToValue() const OVERRIDE;
|
| -
|
| - private:
|
| - virtual ~NetLogWebSocketHandshakeParameter();
|
| -
|
| - const std::string headers_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(NetLogWebSocketHandshakeParameter);
|
| -};
|
| -
|
| } // namespace net
|
|
|
| #endif // NET_WEBSOCKETS_WEBSOCKET_NET_LOG_PARAMS_H_
|
|
|