Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: content/common/cookie_data.h

Issue 1082623002: Remove GetRawCookies and DeleteCookie implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/renderer_host/render_message_filter.cc ('k') | content/common/cookie_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « content/browser/renderer_host/render_message_filter.cc ('k') | content/common/cookie_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698