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

Unified Diff: chrome/browser/net/chrome_cookie_notification_details.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: chrome/browser/net/chrome_cookie_notification_details.h
diff --git a/chrome/browser/net/chrome_cookie_notification_details.h b/chrome/browser/net/chrome_cookie_notification_details.h
index 4b1229fad6080584dc0138427675712c2419aed6..d54f280e5128cb08a890acdf5c49950b9b977e04 100644
--- a/chrome/browser/net/chrome_cookie_notification_details.h
+++ b/chrome/browser/net/chrome_cookie_notification_details.h
@@ -7,9 +7,13 @@
#include "net/cookies/cookie_monster.h"
+namespace net {
+class CanonicalCookie;
+}
+
struct ChromeCookieDetails {
public:
- ChromeCookieDetails(const net::CookieMonster::CanonicalCookie* cookie_copy,
+ ChromeCookieDetails(const net::CanonicalCookie* cookie_copy,
bool is_removed,
net::CookieMonster::Delegate::ChangeCause cause)
: cookie(cookie_copy),
@@ -17,7 +21,7 @@ struct ChromeCookieDetails {
cause(cause) {
}
- const net::CookieMonster::CanonicalCookie* cookie;
+ const net::CanonicalCookie* cookie;
bool removed;
net::CookieMonster::Delegate::ChangeCause cause;
};

Powered by Google App Engine
This is Rietveld 408576698