Show
Ignore:
Timestamp:
08/04/08 12:23:14 (5 months ago)
Author:
mbensi
Message:

merge with webkit revision 35534

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/WebCore/loader/appcache/ApplicationCacheGroup.h

    r243 r429  
    5050class ApplicationCacheGroup : Noncopyable, ResourceHandleClient { 
    5151public: 
    52     ApplicationCacheGroup(const KURL& manifestURL);     
     52    ApplicationCacheGroup(const KURL& manifestURL, bool isCopy = false);     
    5353    ~ApplicationCacheGroup(); 
    5454     
     
    7979    void setNewestCache(PassRefPtr<ApplicationCache> newestCache); 
    8080 
     81    bool isCopy() const { return m_isCopy; } 
    8182private: 
    8283    typedef void (DOMApplicationCache::*ListenerFunction)(); 
     
    134135   
    135136    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; 
    136140     
    137141    RefPtr<ResourceHandle> m_currentHandle;