Lines Matching refs:Backend
9 // The HttpCache takes a disk_cache::Backend as a parameter, and uses that for
39 class Backend;
78 // A BackendFactory creates a backend object to be used by the HttpCache.
83 // The actual method to build the backend. Returns a net error code. If
85 // operation completes, and |backend| must remain valid until the
90 disk_cache::Backend** backend,
94 // A default backend factory for the common use cases.
97 // |path| is the destination for any files used by the backend, and
109 disk_cache::Backend** backend,
151 // Retrieves the cache backend for this HttpCache instance. If the backend
155 // receives the |backend| must remain valid until the operation completes.
156 int GetBackend(disk_cache::Backend** backend, CompletionCallback* callback);
158 // Returns the current backend (can be NULL).
159 disk_cache::Backend* GetCurrentBackend();
236 // Creates the |backend| object and notifies the |callback| when the operation
238 int CreateBackend(disk_cache::Backend** backend,
241 // Makes sure that the backend creation is complete before allowing the
244 // The transaction is free to use the backend directly at any time after
349 // Processes the backend creation notification.
366 scoped_ptr<disk_cache::Backend> disk_cache_;