| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef NET_BASE_SDCH_NET_LOG_PARAMS_H_ | |
| 6 #define NET_BASE_SDCH_NET_LOG_PARAMS_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "net/base/net_export.h" | |
| 11 #include "net/base/net_log.h" | |
| 12 #include "net/base/sdch_problem_codes.h" | |
| 13 | |
| 14 class GURL; | |
| 15 | |
| 16 namespace net { | |
| 17 | |
| 18 NET_EXPORT base::Value* NetLogSdchResourceProblemCallback( | |
| 19 SdchProblemCode problem, | |
| 20 NetLog::LogLevel log_level); | |
| 21 | |
| 22 // If |is_error| is false, "net_error" field won't be added to the JSON and the | |
| 23 // event won't be painted red in the netlog. | |
| 24 NET_EXPORT base::Value* NetLogSdchDictionaryFetchProblemCallback( | |
| 25 SdchProblemCode problem, | |
| 26 const GURL& url, | |
| 27 bool is_error, | |
| 28 NetLog::LogLevel log_level); | |
| 29 | |
| 30 } // namespace net | |
| 31 | |
| 32 #endif // NET_BASE_SDCH_NET_LOG_PARAMS_H_ | |
| OLD | NEW |