OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 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/glue/weburlrequest_extradata_impl.h" |
| 6 |
| 7 using WebKit::WebReferrerPolicy; |
| 8 |
| 9 namespace webkit_glue { |
| 10 |
| 11 WebURLRequestExtraDataImpl::WebURLRequestExtraDataImpl( |
| 12 WebReferrerPolicy referrer_policy) |
| 13 : referrer_policy_(referrer_policy) { |
| 14 } |
| 15 |
| 16 WebURLRequestExtraDataImpl::~WebURLRequestExtraDataImpl() { |
| 17 } |
| 18 |
| 19 } // namespace webkit_glue |
OLD | NEW |