| 237 | } |
| 238 | |
| 239 | std::string Cookie::AsCookieString() const { |
| 240 | // Return the string for the cookie as it would appear in a Cookie header. |
| 241 | return cookie_name_ + "=" + cookie_value_; |
| 242 | } |
| 243 | |
| 244 | std::string Cookie::GetName() const { return cookie_name_; } |
| 245 |
no outgoing calls