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

Unified Diff: webkit/common/appcache/appcache_interfaces.h

Issue 15716007: Split webkit_storage target into webkit_storage_{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: char* -> char[] Created 7 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
« no previous file with comments | « webkit/browser/webkit_browser.gypi ('k') | webkit/common/blob/blob_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/appcache/appcache_interfaces.h
diff --git a/webkit/common/appcache/appcache_interfaces.h b/webkit/common/appcache/appcache_interfaces.h
index 38b69559aab9bfefc9e0793bbc029442e89be4f3..8ab53f08738358436b56992060de7854119f6de1 100644
--- a/webkit/common/appcache/appcache_interfaces.h
+++ b/webkit/common/appcache/appcache_interfaces.h
@@ -11,7 +11,7 @@
#include "base/files/file_path.h"
#include "base/time.h"
#include "googleurl/src/gurl.h"
-#include "webkit/storage/webkit_storage_export.h"
+#include "webkit/common/webkit_common_export.h"
namespace net {
class URLRequest;
@@ -61,7 +61,7 @@ enum NamespaceType {
NETWORK_NAMESPACE
};
-struct WEBKIT_STORAGE_EXPORT AppCacheInfo {
+struct WEBKIT_COMMON_EXPORT AppCacheInfo {
AppCacheInfo();
~AppCacheInfo();
@@ -79,7 +79,7 @@ struct WEBKIT_STORAGE_EXPORT AppCacheInfo {
typedef std::vector<AppCacheInfo> AppCacheInfoVector;
// Type to hold information about a single appcache resource.
-struct WEBKIT_STORAGE_EXPORT AppCacheResourceInfo {
+struct WEBKIT_COMMON_EXPORT AppCacheResourceInfo {
AppCacheResourceInfo();
~AppCacheResourceInfo();
@@ -96,7 +96,7 @@ struct WEBKIT_STORAGE_EXPORT AppCacheResourceInfo {
typedef std::vector<AppCacheResourceInfo> AppCacheResourceInfoVector;
-struct WEBKIT_STORAGE_EXPORT Namespace {
+struct WEBKIT_COMMON_EXPORT Namespace {
Namespace(); // Type is set to FALLBACK_NAMESPACE by default.
Namespace(NamespaceType type, const GURL& url, const GURL& target,
bool is_pattern);
@@ -116,7 +116,7 @@ struct WEBKIT_STORAGE_EXPORT Namespace {
typedef std::vector<Namespace> NamespaceVector;
// Interface used by backend (browser-process) to talk to frontend (renderer).
-class WEBKIT_STORAGE_EXPORT AppCacheFrontend {
+class WEBKIT_COMMON_EXPORT AppCacheFrontend {
public:
virtual void OnCacheSelected(
int host_id, const appcache::AppCacheInfo& info) = 0;
@@ -137,7 +137,7 @@ class WEBKIT_STORAGE_EXPORT AppCacheFrontend {
};
// Interface used by frontend (renderer) to talk to backend (browser-process).
-class WEBKIT_STORAGE_EXPORT AppCacheBackend {
+class WEBKIT_COMMON_EXPORT AppCacheBackend {
public:
virtual void RegisterHost(int host_id) = 0;
virtual void UnregisterHost(int host_id) = 0;
@@ -169,21 +169,22 @@ class WEBKIT_STORAGE_EXPORT AppCacheBackend {
// Note: These are also defined elsewhere in the chrome code base in
// url_contants.h .cc, however the appcache library doesn't not have
// any dependencies on the chrome library, so we can't use them in here.
-extern const char kHttpScheme[];
-extern const char kHttpsScheme[];
-extern const char kHttpGETMethod[];
-extern const char kHttpHEADMethod[];
+WEBKIT_COMMON_EXPORT extern const char kHttpScheme[];
+WEBKIT_COMMON_EXPORT extern const char kHttpsScheme[];
+WEBKIT_COMMON_EXPORT extern const char kHttpGETMethod[];
+WEBKIT_COMMON_EXPORT extern const char kHttpHEADMethod[];
// CommandLine flag to turn this experimental feature on.
-extern const char kEnableExecutableHandlers[];
+WEBKIT_COMMON_EXPORT extern const char kEnableExecutableHandlers[];
-WEBKIT_STORAGE_EXPORT void AddSupportedScheme(const char* scheme);
+WEBKIT_COMMON_EXPORT void AddSupportedScheme(const char* scheme);
-bool IsSchemeSupported(const GURL& url);
-bool IsMethodSupported(const std::string& method);
-bool IsSchemeAndMethodSupported(const net::URLRequest* request);
+WEBKIT_COMMON_EXPORT bool IsSchemeSupported(const GURL& url);
+WEBKIT_COMMON_EXPORT bool IsMethodSupported(const std::string& method);
+WEBKIT_COMMON_EXPORT bool IsSchemeAndMethodSupported(
+ const net::URLRequest* request);
-WEBKIT_STORAGE_EXPORT extern const base::FilePath::CharType
+WEBKIT_COMMON_EXPORT extern const base::FilePath::CharType
kAppCacheDatabaseName[];
} // namespace
« no previous file with comments | « webkit/browser/webkit_browser.gypi ('k') | webkit/common/blob/blob_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698