Index: webkit/common/appcache/appcache_interfaces.cc |
diff --git a/webkit/common/appcache/appcache_interfaces.cc b/webkit/common/appcache/appcache_interfaces.cc |
index 07034513f3942b163f35a30159f25b61fcabcc34..936df0313bd23fb171def81536daf770c08edc2b 100644 |
--- a/webkit/common/appcache/appcache_interfaces.cc |
+++ b/webkit/common/appcache/appcache_interfaces.cc |
@@ -127,4 +127,18 @@ bool IsSchemeAndMethodSupported(const net::URLRequest* request) { |
IsMethodSupported(request->method()); |
} |
+AppCacheExecutableHandlerInterfaces::Response::Response() : |
+ status_code(0) { |
+} |
+ |
+AppCacheExecutableHandlerInterfaces::Response::~Response() { |
+} |
+ |
+AppCacheExecutableHandlerInterfaces::Request::Request() : |
+ is_main_resource_load(false) { |
+} |
+ |
+AppCacheExecutableHandlerInterfaces::Request::~Request() { |
+} |
+ |
} // namespace appcache |