Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / browser / service_worker / service_worker_info.h
index 6fc2eef..0e93bd0 100644 (file)
@@ -25,7 +25,6 @@ class CONTENT_EXPORT ServiceWorkerVersionInfo {
                            int devtools_agent_route_id);
   ~ServiceWorkerVersionInfo();
 
-  bool is_null;
   ServiceWorkerVersion::RunningStatus running_status;
   ServiceWorkerVersion::Status status;
   GURL script_url;
@@ -43,7 +42,8 @@ class CONTENT_EXPORT ServiceWorkerRegistrationInfo {
       int64 registration_id,
       const ServiceWorkerVersionInfo& active_version,
       const ServiceWorkerVersionInfo& waiting_version,
-      const ServiceWorkerVersionInfo& installing_version);
+      const ServiceWorkerVersionInfo& installing_version,
+      int64_t active_version_total_size_bytes);
   ~ServiceWorkerRegistrationInfo();
 
   GURL pattern;
@@ -52,6 +52,8 @@ class CONTENT_EXPORT ServiceWorkerRegistrationInfo {
   ServiceWorkerVersionInfo active_version;
   ServiceWorkerVersionInfo waiting_version;
   ServiceWorkerVersionInfo installing_version;
+
+  int64_t stored_version_size_bytes;
 };
 
 }  // namespace content