Index: content/browser/appcache/manifest_parser.h |
diff --git a/webkit/browser/appcache/manifest_parser.h b/content/browser/appcache/manifest_parser.h |
similarity index 83% |
rename from webkit/browser/appcache/manifest_parser.h |
rename to content/browser/appcache/manifest_parser.h |
index c8d5f00a91359201cf71cffcb0aa313527bde7dc..af77ef3bb3776257150d92682dc324cc2b574ede 100644 |
--- a/webkit/browser/appcache/manifest_parser.h |
+++ b/content/browser/appcache/manifest_parser.h |
@@ -29,21 +29,21 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-#ifndef WEBKIT_BROWSER_APPCACHE_MANIFEST_PARSER_H_ |
-#define WEBKIT_BROWSER_APPCACHE_MANIFEST_PARSER_H_ |
+#ifndef CONTENT_BROWSER_APPCACHE_MANIFEST_PARSER_H_ |
+#define CONTENT_BROWSER_APPCACHE_MANIFEST_PARSER_H_ |
#include <string> |
#include <vector> |
#include "base/containers/hash_tables.h" |
-#include "webkit/browser/webkit_storage_browser_export.h" |
-#include "webkit/common/appcache/appcache_interfaces.h" |
+#include "content/common/content_export.h" |
+#include "content/public/common/appcache_interfaces.h" |
class GURL; |
-namespace appcache { |
+namespace content { |
-struct WEBKIT_STORAGE_BROWSER_EXPORT Manifest { |
+struct CONTENT_EXPORT Manifest { |
Manifest(); |
~Manifest(); |
@@ -60,13 +60,13 @@ enum ParseMode { |
PARSE_MANIFEST_ALLOWING_INTERCEPTS |
}; |
-WEBKIT_STORAGE_BROWSER_EXPORT bool ParseManifest( |
+CONTENT_EXPORT bool ParseManifest( |
const GURL& manifest_url, |
const char* data, |
int length, |
ParseMode parse_mode, |
Manifest& manifest); |
-} // namespace appcache |
+} // namespace content |
-#endif // WEBKIT_BROWSER_APPCACHE_MANIFEST_PARSER_H_ |
+#endif // CONTENT_BROWSER_APPCACHE_MANIFEST_PARSER_H_ |