| Index: net/http/http_net_log_params.h
|
| diff --git a/net/http/http_net_log_params.h b/net/http/http_net_log_params.h
|
| index 6a0b47b73483d9ebb495ceae2866f72b810a9141..1631363f84e57f70fa1b5665ed623116caa5a91c 100644
|
| --- a/net/http/http_net_log_params.h
|
| +++ b/net/http/http_net_log_params.h
|
| @@ -24,7 +24,7 @@ class NetLogHttpRequestParameter : public NetLog::EventParameters {
|
| NetLogHttpRequestParameter(const std::string& line,
|
| const HttpRequestHeaders& headers);
|
|
|
| - Value* ToValue() const;
|
| + virtual Value* ToValue() const;
|
|
|
| const HttpRequestHeaders& GetHeaders() const {
|
| return headers_;
|
| @@ -48,7 +48,7 @@ class NetLogHttpResponseParameter : public NetLog::EventParameters {
|
| explicit NetLogHttpResponseParameter(
|
| const scoped_refptr<HttpResponseHeaders>& headers);
|
|
|
| - Value* ToValue() const;
|
| + virtual Value* ToValue() const;
|
|
|
| const HttpResponseHeaders& GetHeaders() const {
|
| return *headers_;
|
|
|