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

Unified Diff: chrome/browser/ui/cocoa/content_settings/cookie_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/ui/cocoa/content_settings/cookie_details.h
diff --git a/chrome/browser/ui/cocoa/content_settings/cookie_details.h b/chrome/browser/ui/cocoa/content_settings/cookie_details.h
index 708de3bb035b182dfe8b490d924bad3afe1e4041..836bff1075ce20f21d333fd8b1649e36d683d35f 100644
--- a/chrome/browser/ui/cocoa/content_settings/cookie_details.h
+++ b/chrome/browser/ui/cocoa/content_settings/cookie_details.h
@@ -8,11 +8,14 @@
#include "chrome/browser/browsing_data_database_helper.h"
#include "chrome/browser/browsing_data_indexed_db_helper.h"
#include "chrome/browser/browsing_data_local_storage_helper.h"
-#include "net/cookies/cookie_monster.h"
#include "webkit/appcache/appcache_service.h"
class CookieTreeNode;
+namespace net {
+class CanonicalCookie;
+}
+
// This enum specifies the type of information contained in the
// cookie details.
enum CocoaCookieDetailsType {
@@ -161,7 +164,7 @@ enum CocoaCookieDetailsType {
- (id)initAsFolder;
// Used for cookie details in both the cookie tree and the cookie prompt dialog.
-- (id)initWithCookie:(const net::CookieMonster::CanonicalCookie*)treeNode
+- (id)initWithCookie:(const net::CanonicalCookie*)treeNode
canEditExpiration:(BOOL)canEditExpiration;
// Used for database details in the cookie tree.

Powered by Google App Engine
This is Rietveld 408576698