| 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.
|
|
|