| Index: content/browser/appcache/appcache_working_set.h
 | 
| diff --git a/webkit/browser/appcache/appcache_working_set.h b/content/browser/appcache/appcache_working_set.h
 | 
| similarity index 85%
 | 
| rename from webkit/browser/appcache/appcache_working_set.h
 | 
| rename to content/browser/appcache/appcache_working_set.h
 | 
| index 482e58f285cdba5461d4fc1d92217fd857ea1023..5b9d00a1e1c733d14733d5f08d7a578a8a1b4259 100644
 | 
| --- a/webkit/browser/appcache/appcache_working_set.h
 | 
| +++ b/content/browser/appcache/appcache_working_set.h
 | 
| @@ -2,16 +2,16 @@
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| -#ifndef WEBKIT_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_
 | 
| -#define WEBKIT_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_
 | 
| +#ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_
 | 
| +#define CONTENT_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_
 | 
|  
 | 
|  #include <map>
 | 
|  
 | 
|  #include "base/containers/hash_tables.h"
 | 
| +#include "content/common/content_export.h"
 | 
|  #include "url/gurl.h"
 | 
| -#include "webkit/browser/webkit_storage_browser_export.h"
 | 
|  
 | 
| -namespace appcache {
 | 
| +namespace content {
 | 
|  
 | 
|  class AppCache;
 | 
|  class AppCacheGroup;
 | 
| @@ -19,7 +19,7 @@ class AppCacheResponseInfo;
 | 
|  
 | 
|  // Represents the working set of appcache object instances
 | 
|  // currently in memory.
 | 
| -class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheWorkingSet {
 | 
| +class CONTENT_EXPORT AppCacheWorkingSet {
 | 
|   public:
 | 
|    typedef std::map<GURL, AppCacheGroup*> GroupMap;
 | 
|  
 | 
| @@ -71,6 +71,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheWorkingSet {
 | 
|    bool is_disabled_;
 | 
|  };
 | 
|  
 | 
| -}  // namespace appcache
 | 
| +}  // namespace content
 | 
|  
 | 
| -#endif  // WEBKIT_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_
 | 
| +#endif  // CONTENT_BROWSER_APPCACHE_APPCACHE_WORKING_SET_H_
 | 
| 
 |