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

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

Issue 22314003: NavigationController prototype Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: NavController prototype - chrome side Created 7 years, 3 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/common/appcache/appcache_interfaces.h ('k') | webkit/storage_browser.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « webkit/common/appcache/appcache_interfaces.h ('k') | webkit/storage_browser.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698