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

Unified Diff: content/browser/appcache/manifest_parser.h

Issue 344493002: Move all remaining appcache-related code to content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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: 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_

Powered by Google App Engine
This is Rietveld 408576698