| Index: chrome/browser/ui/cocoa/content_settings/cookie_details.mm
 | 
| diff --git a/chrome/browser/ui/cocoa/content_settings/cookie_details.mm b/chrome/browser/ui/cocoa/content_settings/cookie_details.mm
 | 
| index 02f6f57a47d5ac0e784595f49ced511b05d0b563..3ae66b396b0a016cfa67a679e33df810d9f7d69c 100644
 | 
| --- a/chrome/browser/ui/cocoa/content_settings/cookie_details.mm
 | 
| +++ b/chrome/browser/ui/cocoa/content_settings/cookie_details.mm
 | 
| @@ -11,7 +11,7 @@
 | 
|  #include "net/cookies/canonical_cookie.h"
 | 
|  #include "ui/base/l10n/l10n_util_mac.h"
 | 
|  #include "ui/base/text/bytes_formatting.h"
 | 
| -#include "webkit/browser/appcache/appcache_service.h"
 | 
| +#include "content/public/browser/appcache_service.h"
 | 
|  
 | 
|  #pragma mark Cocoa Cookie Details
 | 
|  
 | 
| @@ -182,7 +182,7 @@
 | 
|    return self;
 | 
|  }
 | 
|  
 | 
| -- (id)initWithAppCacheInfo:(const appcache::AppCacheInfo*)appcacheInfo {
 | 
| +- (id)initWithAppCacheInfo:(const content::AppCacheInfo*)appcacheInfo {
 | 
|    if ((self = [super init])) {
 | 
|      type_ = kCocoaCookieDetailsTypeTreeAppCache;
 | 
|      canEditExpiration_ = NO;
 | 
| 
 |