Index: content/common/cookie_data.h |
diff --git a/content/common/cookie_data.h b/content/common/cookie_data.h |
deleted file mode 100644 |
index 21dd022778c599f46d9574c9f589e2fd2b421a65..0000000000000000000000000000000000000000 |
--- a/content/common/cookie_data.h |
+++ /dev/null |
@@ -1,50 +0,0 @@ |
-// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef CONTENT_COMMON_COOKIE_DATA_H_ |
-#define CONTENT_COMMON_COOKIE_DATA_H_ |
- |
-#include <string> |
- |
-#include "content/common/content_export.h" |
- |
-namespace net { |
-class CanonicalCookie; |
-} |
- |
-namespace content { |
- |
-struct CONTENT_EXPORT CookieData { |
- CookieData(); |
- explicit CookieData(const net::CanonicalCookie& c); |
- ~CookieData(); |
- |
- // Cookie name. |
- std::string name; |
- |
- // Cookie value. |
- std::string value; |
- |
- // Cookie domain. |
- std::string domain; |
- |
- // Cookie path. |
- std::string path; |
- |
- // Cookie expires param if any. |
- double expires; |
- |
- // Cookie HTTPOnly param. |
- bool http_only; |
- |
- // Cookie secure param. |
- bool secure; |
- |
- // Session cookie flag. |
- bool session; |
-}; |
- |
-} // namespace content |
- |
-#endif // CONTENT_COMMON_COOKIE_DATA_H_ |