| 104 | } |
| 105 | |
| 106 | BrowserCookie BrowserCookie::Copy(void) const { |
| 107 | BrowserCookie destination_cookie; |
| 108 | destination_cookie.set_name(this->name_); |
| 109 | destination_cookie.set_value(this->value_); |
| 110 | destination_cookie.set_domain(this->domain_); |
| 111 | destination_cookie.set_path(this->path_); |
| 112 | destination_cookie.set_is_secure(this->is_secure_); |
| 113 | destination_cookie.set_is_httponly(this->is_httponly_); |
| 114 | destination_cookie.set_expiration_time(this->expiration_time_); |
| 115 | return destination_cookie; |
| 116 | } |
| 117 | |
| 118 | } |
no test coverage detected