OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 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 #include "webkit/child/weburlrequest_extradata_impl.h" | |
6 | |
7 using blink::WebString; | |
8 | |
9 namespace webkit_glue { | |
10 | |
11 WebURLRequestExtraDataImpl::WebURLRequestExtraDataImpl( | |
12 const WebString& custom_user_agent, | |
13 bool was_after_preconnect_request) | |
14 : custom_user_agent_(custom_user_agent), | |
15 was_after_preconnect_request_(was_after_preconnect_request) { | |
16 } | |
17 | |
18 WebURLRequestExtraDataImpl::~WebURLRequestExtraDataImpl() { | |
19 } | |
20 | |
21 } // namespace webkit_glue | |
OLD | NEW |