Changeset 429 for trunk/WebCore/loader/appcache/ApplicationCacheGroup.h
- Timestamp:
- 08/04/08 12:23:14 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/WebCore/loader/appcache/ApplicationCacheGroup.h
r243 r429 50 50 class ApplicationCacheGroup : Noncopyable, ResourceHandleClient { 51 51 public: 52 ApplicationCacheGroup(const KURL& manifestURL );52 ApplicationCacheGroup(const KURL& manifestURL, bool isCopy = false); 53 53 ~ApplicationCacheGroup(); 54 54 … … 79 79 void setNewestCache(PassRefPtr<ApplicationCache> newestCache); 80 80 81 bool isCopy() const { return m_isCopy; } 81 82 private: 82 83 typedef void (DOMApplicationCache::*ListenerFunction)(); … … 134 135 135 136 unsigned m_storageID; 137 138 // Whether this cache group is a copy that's only used for transferring the cache to another file. 139 bool m_isCopy; 136 140 137 141 RefPtr<ResourceHandle> m_currentHandle;
