Index: net/cookies/cookie_options.h |
diff --git a/net/cookies/cookie_options.h b/net/cookies/cookie_options.h |
index ed5e2ef3a4772e5d8b08cec859cbf25bb3d806a9..975b8c8fd93ad7c3e4c29e9d5139d1239957f313 100644 |
--- a/net/cookies/cookie_options.h |
+++ b/net/cookies/cookie_options.h |
@@ -14,10 +14,7 @@ class CookieOptions { |
// Default is to exclude httponly, which means: |
// - reading operations will not return httponly cookies. |
// - writing operations will not write httponly cookies. |
- CookieOptions() |
- : exclude_httponly_(true), |
- server_time_() { |
- } |
+ CookieOptions() : exclude_httponly_(true), server_time_() {} |
void set_exclude_httponly() { exclude_httponly_ = true; } |
void set_include_httponly() { exclude_httponly_ = false; } |
@@ -39,4 +36,3 @@ class CookieOptions { |
} // namespace net |
#endif // NET_COOKIES_COOKIE_OPTIONS_H_ |
- |