Home | History | Annotate | Download | only in download

Lines Matching refs:SavePackage

8 // with a SaveItem object which belongs to one SavePackage and runs on the file
53 // (unique integer created in the IO thread) to the SavePackage for the
55 // during saving, the SavePackage will notice the SaveFileManage to
75 class SavePackage;
103 SavePackage* save_package);
120 SavePackage* package);
160 // Called only on UI thread to get the SavePackage for a tab's profile.
161 static SavePackage* GetSavePackageFromRenderIds(int render_process_id,
165 // SavePackage for further matching.
167 SavePackage* save_package);
169 // the save URL and SavePackage.
170 SavePackage* UnregisterStartingRequest(const GURL& save_url,
173 // Look up the SavePackage according to save id.
174 SavePackage* LookupPackage(int save_id);
188 // Update the SavePackage with the current state of a started saving job.
189 // If the SavePackage for this saving job is gone, cancel the request.
193 // Update the SavePackage with the finish state, and remove the request
197 // map:(url, SavePackage) to find the request and remove it.
199 // Notifies SavePackage that the whole page saving job is finished.
232 // Tracks which SavePackage to send data to, called only on UI thread.
233 // SavePackageMap maps save IDs to their SavePackage.
234 typedef base::hash_map<int, SavePackage*> SavePackageMap;
243 // First we use a hashmap to map the request URL to SavePackage, then we
247 typedef base::hash_map<std::string, SavePackage*> StartingRequestsMap;