OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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 WebNavigationPreloadState_h |
| 6 #define WebNavigationPreloadState_h |
| 7 |
| 8 namespace blink { |
| 9 |
| 10 struct WebNavigationPreloadState { |
| 11 WebNavigationPreloadState(bool enabled, const WebString& headerValue) |
| 12 : enabled(enabled), headerValue(headerValue) {} |
| 13 |
| 14 bool enabled; |
| 15 WebString headerValue; |
| 16 }; |
| 17 } |
| 18 |
| 19 #endif // WebNavigationPreloadState_h |
OLD | NEW |