| 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);
|
|
|