// Package applicationcache provides the Chrome Debugging Protocol // commands, types, and events for the Chrome ApplicationCache domain. // // Generated by the chromedp-gen command. package applicationcache // AUTOGENERATED. DO NOT EDIT. import ( "context" cdp "github.com/knq/chromedp/cdp" "github.com/mailru/easyjson" ) // GetFramesWithManifestsParams returns array of frame identifiers with // manifest urls for each frame containing a document associated with some // application cache. type GetFramesWithManifestsParams struct{} // GetFramesWithManifests returns array of frame identifiers with manifest // urls for each frame containing a document associated with some application // cache. func GetFramesWithManifests() *GetFramesWithManifestsParams { return &GetFramesWithManifestsParams{} } // GetFramesWithManifestsReturns return values. type GetFramesWithManifestsReturns struct { FrameIds []*FrameWithManifest `json:"frameIds,omitempty"` // Array of frame identifiers with manifest urls for each frame containing a document associated with some application cache. } // Do executes ApplicationCache.getFramesWithManifests. // // returns: // frameIds - Array of frame identifiers with manifest urls for each frame containing a document associated with some application cache. func (p *GetFramesWithManifestsParams) Do(ctxt context.Context, h cdp.FrameHandler) (frameIds []*FrameWithManifest, err error) { if ctxt == nil { ctxt = context.Background() } // execute ch := h.Execute(ctxt, cdp.CommandApplicationCacheGetFramesWithManifests, cdp.Empty) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r GetFramesWithManifestsReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.FrameIds, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult } // EnableParams enables application cache domain notifications. type EnableParams struct{} // Enable enables application cache domain notifications. func Enable() *EnableParams { return &EnableParams{} } // Do executes ApplicationCache.enable. func (p *EnableParams) Do(ctxt context.Context, h cdp.FrameHandler) (err error) { if ctxt == nil { ctxt = context.Background() } // execute ch := h.Execute(ctxt, cdp.CommandApplicationCacheEnable, cdp.Empty) // read response select { case res := <-ch: if res == nil { return cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: return nil case error: return v } case <-ctxt.Done(): return cdp.ErrContextDone } return cdp.ErrUnknownResult } // GetManifestForFrameParams returns manifest URL for document in the given // frame. type GetManifestForFrameParams struct { FrameID cdp.FrameID `json:"frameId"` // Identifier of the frame containing document whose manifest is retrieved. } // GetManifestForFrame returns manifest URL for document in the given frame. // // parameters: // frameID - Identifier of the frame containing document whose manifest is retrieved. func GetManifestForFrame(frameID cdp.FrameID) *GetManifestForFrameParams { return &GetManifestForFrameParams{ FrameID: frameID, } } // GetManifestForFrameReturns return values. type GetManifestForFrameReturns struct { ManifestURL string `json:"manifestURL,omitempty"` // Manifest URL for document in the given frame. } // Do executes ApplicationCache.getManifestForFrame. // // returns: // manifestURL - Manifest URL for document in the given frame. func (p *GetManifestForFrameParams) Do(ctxt context.Context, h cdp.FrameHandler) (manifestURL string, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return "", err } // execute ch := h.Execute(ctxt, cdp.CommandApplicationCacheGetManifestForFrame, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return "", cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r GetManifestForFrameReturns err = easyjson.Unmarshal(v, &r) if err != nil { return "", cdp.ErrInvalidResult } return r.ManifestURL, nil case error: return "", v } case <-ctxt.Done(): return "", cdp.ErrContextDone } return "", cdp.ErrUnknownResult } // GetApplicationCacheForFrameParams returns relevant application cache data // for the document in given frame. type GetApplicationCacheForFrameParams struct { FrameID cdp.FrameID `json:"frameId"` // Identifier of the frame containing document whose application cache is retrieved. } // GetApplicationCacheForFrame returns relevant application cache data for // the document in given frame. // // parameters: // frameID - Identifier of the frame containing document whose application cache is retrieved. func GetApplicationCacheForFrame(frameID cdp.FrameID) *GetApplicationCacheForFrameParams { return &GetApplicationCacheForFrameParams{ FrameID: frameID, } } // GetApplicationCacheForFrameReturns return values. type GetApplicationCacheForFrameReturns struct { ApplicationCache *ApplicationCache `json:"applicationCache,omitempty"` // Relevant application cache data for the document in given frame. } // Do executes ApplicationCache.getApplicationCacheForFrame. // // returns: // applicationCache - Relevant application cache data for the document in given frame. func (p *GetApplicationCacheForFrameParams) Do(ctxt context.Context, h cdp.FrameHandler) (applicationCache *ApplicationCache, err error) { if ctxt == nil { ctxt = context.Background() } // marshal buf, err := easyjson.Marshal(p) if err != nil { return nil, err } // execute ch := h.Execute(ctxt, cdp.CommandApplicationCacheGetApplicationCacheForFrame, easyjson.RawMessage(buf)) // read response select { case res := <-ch: if res == nil { return nil, cdp.ErrChannelClosed } switch v := res.(type) { case easyjson.RawMessage: // unmarshal var r GetApplicationCacheForFrameReturns err = easyjson.Unmarshal(v, &r) if err != nil { return nil, cdp.ErrInvalidResult } return r.ApplicationCache, nil case error: return nil, v } case <-ctxt.Done(): return nil, cdp.ErrContextDone } return nil, cdp.ErrUnknownResult }