Chromium Code Reviews| Index: net/base/net_log.h |
| =================================================================== |
| --- net/base/net_log.h (revision 141814) |
| +++ net/base/net_log.h (working copy) |
| @@ -13,6 +13,7 @@ |
| #include "base/compiler_specific.h" |
| #include "base/memory/ref_counted.h" |
| #include "base/memory/scoped_ptr.h" |
| +#include "base/string16.h" |
|
mmenke
2012/06/13 19:42:13
I don't believe typedefs can be forward declared.
|
| #include "net/base/net_export.h" |
| namespace base { |
| @@ -306,6 +307,10 @@ |
| static ParametersCallback StringCallback(const char* name, |
| const std::string* value); |
| + // Same as above, but takes in a UTF16 string. |
| + static ParametersCallback StringCallback(const char* name, |
| + const string16* value); |
| + |
| protected: |
| // Child classes should respond to the new entry here. This includes |
| // creating the Entry object and alerting their observers. |