Chromium Code Reviews| Index: net/url_request/url_request_inet_job.cc |
| =================================================================== |
| --- net/url_request/url_request_inet_job.cc (revision 8714) |
| +++ net/url_request/url_request_inet_job.cc (working copy) |
| @@ -83,8 +83,8 @@ |
| // TODO(darin): we should re-create the internet if the UA string changes, |
| // but we have to be careful about existing users of this internet. |
| if (!the_internet_) { |
| - InitializeTheInternet( |
| - request->context() ? request->context()->user_agent() : std::string()); |
| + InitializeTheInternet(request->context() ? |
|
wtc
2009/01/27 19:19:24
Nit: there is a lint error in one of these lines (
|
| + request->context()->GetUserAgent(GURL()) : std::string()); |
| } |
| #ifndef NDEBUG |
| DCHECK(MessageLoop::current() == my_message_loop_) << |