diff options
Diffstat (limited to 'webkit/appcache/appcache_interfaces.h')
-rw-r--r-- | webkit/appcache/appcache_interfaces.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/webkit/appcache/appcache_interfaces.h b/webkit/appcache/appcache_interfaces.h index 70baf3a..d04a7da 100644 --- a/webkit/appcache/appcache_interfaces.h +++ b/webkit/appcache/appcache_interfaces.h @@ -11,7 +11,6 @@ #include "base/file_path.h" #include "base/time.h" #include "googleurl/src/gurl.h" -#include "webkit/appcache/appcache_export.h" namespace net { class URLRequest; @@ -55,7 +54,7 @@ enum LogLevel { LOG_ERROR, }; -struct APPCACHE_EXPORT AppCacheInfo { +struct AppCacheInfo { AppCacheInfo(); ~AppCacheInfo(); @@ -72,7 +71,7 @@ struct APPCACHE_EXPORT AppCacheInfo { typedef std::vector<AppCacheInfo> AppCacheInfoVector; // Type to hold information about a single appcache resource. -struct APPCACHE_EXPORT AppCacheResourceInfo { +struct AppCacheResourceInfo { AppCacheResourceInfo(); ~AppCacheResourceInfo(); @@ -89,7 +88,7 @@ struct APPCACHE_EXPORT AppCacheResourceInfo { typedef std::vector<AppCacheResourceInfo> AppCacheResourceInfoVector; // Interface used by backend (browser-process) to talk to frontend (renderer). -class APPCACHE_EXPORT AppCacheFrontend { +class AppCacheFrontend { public: virtual void OnCacheSelected( int host_id, const appcache::AppCacheInfo& info) = 0; @@ -110,7 +109,7 @@ class APPCACHE_EXPORT AppCacheFrontend { }; // Interface used by frontend (renderer) to talk to backend (browser-process). -class APPCACHE_EXPORT AppCacheBackend { +class AppCacheBackend { public: virtual void RegisterHost(int host_id) = 0; virtual void UnregisterHost(int host_id) = 0; @@ -150,7 +149,7 @@ bool IsSchemeSupported(const GURL& url); bool IsMethodSupported(const std::string& method); bool IsSchemeAndMethodSupported(const net::URLRequest* request); -APPCACHE_EXPORT extern const FilePath::CharType kAppCacheDatabaseName[]; +extern const FilePath::CharType kAppCacheDatabaseName[]; } // namespace |