Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2015 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 // Brought to you by number 42. | |
|
eroman
2015/07/27 18:02:03
nit: While I appreciate the humor, not sure this i
| |
| 6 | |
| 7 #include "net/cookies/cookie_options.h" | |
| 8 | |
| 9 namespace net { | |
| 10 | |
| 11 CookieOptions::CookieOptions() | |
| 12 : exclude_httponly_(true), | |
| 13 include_first_party_only_(false), | |
| 14 server_time_() {} | |
| 15 | |
| 16 } // namespace net | |
| OLD | NEW |