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

Unified Diff: webkit/appcache/appcache_response.h

Issue 11230022: webkit: Merge build target 'appcache' to 'webkit_storage' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: _ Created 8 years, 2 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
« no previous file with comments | « webkit/appcache/appcache_request_handler.h ('k') | webkit/appcache/appcache_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_response.h
diff --git a/webkit/appcache/appcache_response.h b/webkit/appcache/appcache_response.h
index 9de19f2c5069c453ec86f7b3c47b6cc176254bd6..7d5db3a60a23636eb4921001e0330914f28d0ec4 100644
--- a/webkit/appcache/appcache_response.h
+++ b/webkit/appcache/appcache_response.h
@@ -26,7 +26,7 @@ static const int kUnkownResponseDataSize = -1;
// Response info for a particular response id. Instances are tracked in
// the working set.
-class APPCACHE_EXPORT AppCacheResponseInfo
+class WEBKIT_STORAGE_EXPORT AppCacheResponseInfo
: public base::RefCounted<AppCacheResponseInfo> {
public:
// AppCacheResponseInfo takes ownership of the http_info.
@@ -54,7 +54,7 @@ class APPCACHE_EXPORT AppCacheResponseInfo
// A refcounted wrapper for HttpResponseInfo so we can apply the
// refcounting semantics used with IOBuffer with these structures too.
-struct APPCACHE_EXPORT HttpResponseInfoIOBuffer
+struct WEBKIT_STORAGE_EXPORT HttpResponseInfoIOBuffer
: public base::RefCountedThreadSafe<HttpResponseInfoIOBuffer> {
scoped_ptr<net::HttpResponseInfo> http_info;
int response_data_size;
@@ -68,7 +68,7 @@ struct APPCACHE_EXPORT HttpResponseInfoIOBuffer
};
// Low level storage API used by the response reader and writer.
-class APPCACHE_EXPORT AppCacheDiskCacheInterface {
+class WEBKIT_STORAGE_EXPORT AppCacheDiskCacheInterface {
public:
class Entry {
public:
@@ -94,7 +94,7 @@ class APPCACHE_EXPORT AppCacheDiskCacheInterface {
};
// Common base class for response reader and writer.
-class APPCACHE_EXPORT AppCacheResponseIO {
+class WEBKIT_STORAGE_EXPORT AppCacheResponseIO {
public:
virtual ~AppCacheResponseIO();
int64 response_id() const { return response_id_; }
@@ -130,7 +130,7 @@ class APPCACHE_EXPORT AppCacheResponseIO {
// and there is a read in progress, the implementation will return
// immediately but will take care of any side effect of cancelling the
// operation. In other words, instances are safe to delete at will.
-class APPCACHE_EXPORT AppCacheResponseReader : public AppCacheResponseIO {
+class WEBKIT_STORAGE_EXPORT AppCacheResponseReader : public AppCacheResponseIO {
public:
virtual ~AppCacheResponseReader();
@@ -192,7 +192,7 @@ class APPCACHE_EXPORT AppCacheResponseReader : public AppCacheResponseIO {
// and there is a write in progress, the implementation will return
// immediately but will take care of any side effect of cancelling the
// operation. In other words, instances are safe to delete at will.
-class APPCACHE_EXPORT AppCacheResponseWriter : public AppCacheResponseIO {
+class WEBKIT_STORAGE_EXPORT AppCacheResponseWriter : public AppCacheResponseIO {
public:
virtual ~AppCacheResponseWriter();
« no previous file with comments | « webkit/appcache/appcache_request_handler.h ('k') | webkit/appcache/appcache_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698