Home | History | Annotate | Download | only in http

Lines Matching refs:backend

9 // The HttpCache takes a disk_cache::Backend as a parameter, and uses that for
40 class Backend;
79 // A BackendFactory creates a backend object to be used by the HttpCache.
84 // The actual method to build the backend. Returns a net error code. If
86 // operation completes, and |backend| must remain valid until the
91 scoped_ptr<disk_cache::Backend>* backend,
95 // A default backend factory for the common use cases.
98 // |path| is the destination for any files used by the backend, and
111 scoped_ptr<disk_cache::Backend>* backend,
145 // Retrieves the cache backend for this HttpCache instance. If the backend
149 // receives the |backend| must remain valid until the operation completes.
150 int GetBackend(disk_cache::Backend** backend,
153 // Returns the current backend (can be NULL).
154 disk_cache::Backend* GetCurrentBackend() const;
249 // Creates the |backend| object and notifies the |callback| when the operation
251 int CreateBackend(disk_cache::Backend** backend,
254 // Makes sure that the backend creation is complete before allowing the
257 // The transaction is free to use the backend directly at any time after
382 // Processes the backend creation notification.
399 scoped_ptr<disk_cache::Backend> disk_cache_;