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

Unified Diff: webkit/glue/webcookie.h

Issue 10785017: Move CanonicalCookie into separate files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing include Created 8 years, 5 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
Index: webkit/glue/webcookie.h
diff --git a/webkit/glue/webcookie.h b/webkit/glue/webcookie.h
index 3d60f4cf34a9e22182cd78cccdbed7185c302e45..4d3d24480753c65626b344b7369b5edd9b9269f9 100644
--- a/webkit/glue/webcookie.h
+++ b/webkit/glue/webcookie.h
@@ -9,14 +9,19 @@
#ifndef WEBKIT_GLUE_WEBCOOKIE_H_
#define WEBKIT_GLUE_WEBCOOKIE_H_
-#include "net/cookies/cookie_monster.h"
+#include <string>
+
#include "webkit/glue/webkit_glue_export.h"
+namespace net {
+class CanonicalCookie;
+}
+
namespace webkit_glue {
struct WEBKIT_GLUE_EXPORT WebCookie {
WebCookie();
- explicit WebCookie(const net::CookieMonster::CanonicalCookie& c);
+ explicit WebCookie(const net::CanonicalCookie& c);
WebCookie(const std::string& name, const std::string& value,
const std::string& domain, const std::string& path, double expires,
bool http_only, bool secure, bool session);
« net/cookies/cookie_monster.cc ('K') | « net/net.gyp ('k') | webkit/glue/webcookie.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698