| Index: content/public/common/appcache_info.h
|
| diff --git a/content/public/common/appcache_info.h b/content/public/common/appcache_info.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9c7102b936339d080ac7ac9d85c9a8f67bfca1ed
|
| --- /dev/null
|
| +++ b/content/public/common/appcache_info.h
|
| @@ -0,0 +1,53 @@
|
| +// Copyright (c) 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CONTENT_PUBLIC_COMMON_APPCACHE_INFO_H_
|
| +#define CONTENT_PUBLIC_COMMON_APPCACHE_INFO_H_
|
| +
|
| +#include <vector>
|
| +
|
| +#include "base/time/time.h"
|
| +#include "content/common/content_export.h"
|
| +#include "url/gurl.h"
|
| +
|
| +namespace content {
|
| +
|
| +// Defines constants, types, and abstract classes used in the main
|
| +// process and in child processes.
|
| +
|
| +static const int kAppCacheNoHostId = 0;
|
| +static const int64 kAppCacheNoCacheId = 0;
|
| +static const int64 kAppCacheNoResponseId = 0;
|
| +static const int64 kAppCacheUnknownCacheId = -1;
|
| +
|
| +enum AppCacheStatus {
|
| + APPCACHE_STATUS_UNCACHED,
|
| + APPCACHE_STATUS_IDLE,
|
| + APPCACHE_STATUS_CHECKING,
|
| + APPCACHE_STATUS_DOWNLOADING,
|
| + APPCACHE_STATUS_UPDATE_READY,
|
| + APPCACHE_STATUS_OBSOLETE,
|
| + APPCACHE_STATUS_LAST = APPCACHE_STATUS_OBSOLETE
|
| +};
|
| +
|
| +struct CONTENT_EXPORT AppCacheInfo {
|
| + AppCacheInfo();
|
| + ~AppCacheInfo();
|
| +
|
| + GURL manifest_url;
|
| + base::Time creation_time;
|
| + base::Time last_update_time;
|
| + base::Time last_access_time;
|
| + int64 cache_id;
|
| + int64 group_id;
|
| + AppCacheStatus status;
|
| + int64 size;
|
| + bool is_complete;
|
| +};
|
| +
|
| +typedef std::vector<AppCacheInfo> AppCacheInfoVector;
|
| +
|
| +} // namespace
|
| +
|
| +#endif // CONTENT_PUBLIC_COMMON_APPCACHE_INFO_H_
|
|
|