diff options
author | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-29 22:46:55 +0000 |
---|---|---|
committer | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-29 22:46:55 +0000 |
commit | 35f2094cd0ac27018aff2646445f44c3f9ee8d36 (patch) | |
tree | 0f4892fb2f6bcf9d5f044e70c1cf1ed0d42bb882 /app/sql/connection.h | |
parent | 6d38a7fc2594f14cbb87e28389c81965381b64e8 (diff) | |
download | chromium_src-35f2094cd0ac27018aff2646445f44c3f9ee8d36.zip chromium_src-35f2094cd0ac27018aff2646445f44c3f9ee8d36.tar.gz chromium_src-35f2094cd0ac27018aff2646445f44c3f9ee8d36.tar.bz2 |
AppCacheDatabase and SQL based AppCacheStorageImpl.
Still nothing is being written to disk with this CL,
in-memory SQLite and DiskCaches are being utilized.
Responses are not yet being removed from the DiskCasche
when the should be. Once that's done (in the next CL), we'll
start saving things on disk.
BUG=none
TEST=appcache_database_unittest.cc, appcache_storage_impl_unittest.cc
Review URL: http://codereview.chromium.org/518020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35354 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/sql/connection.h')
-rw-r--r-- | app/sql/connection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/sql/connection.h b/app/sql/connection.h index e7c2a2d..52587ac 100644 --- a/app/sql/connection.h +++ b/app/sql/connection.h @@ -143,12 +143,12 @@ class Connection { // Initialization ------------------------------------------------------------ // Initializes the SQL connection for the given file, returning true if the - // file could be opened. You can call this or InitInMemory to initialize. + // file could be opened. You can call this or OpenInMemory. bool Open(const FilePath& path); // Initializes the SQL connection for a temporary in-memory database. There // will be no associated file on disk, and the initial database will be - // empty. You must call this or Init to open the database. + // empty. You can call this or Open. bool OpenInMemory(); // Returns trie if the database has been successfully opened. |