Lines Matching +full:cancel +full:- +full:in +full:- +full:progress
3 // Redistribution and use in source and binary forms, with or without
9 // * Redistributions in binary form must reproduce the above
11 // in the documentation and/or other materials provided with the
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 // ---------------------------------------------------------------------------
32 // The contents of this file must follow a specific format in order to
33 // support the CEF translator tool. See the translator.README.txt file in the
52 // can be created on any valid CEF thread in either the browser or render
56 /*--cef(source=library)--*/
65 // have this association, in which case it may be handled differently (see
68 // - It may be intercepted by the client via CefResourceRequestHandler or
70 // - POST data may only contain only a single element of type PDE_TYPE_FILE
72 // - If |request_context| is empty the global request context will be used.
74 // The |request| object will be marked as read-only after calling this method.
76 /*--cef(optional_param=request_context)--*/
84 // object is read-only and should not be modified.
86 /*--cef()--*/
92 /*--cef()--*/
98 /*--cef(default_retval=UR_UNKNOWN)--*/
105 /*--cef(default_retval=ERR_NONE)--*/
111 // The returned object is read-only and should not be modified.
113 /*--cef()--*/
120 /*--cef()--*/
124 // Cancel the request.
126 /*--cef()--*/
127 virtual void Cancel() = 0;
135 /*--cef(source=client)--*/
143 /*--cef()--*/
147 // Notifies the client of upload progress. |current| denotes the number of
148 // bytes sent so far and |total| is the total size of uploading data (or -1 if
152 /*--cef()--*/
158 // Notifies the client of download progress. |current| denotes the number of
160 // response (or -1 if not determined).
162 /*--cef()--*/
172 /*--cef()--*/
183 // then returning false will result in a call to GetAuthCredentials on the
185 // returning false will cancel the request immediately. This method will only
188 /*--cef(optional_param=realm)--*/