Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(809)

Unified Diff: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.h

Issue 2395473002: reflow comments in modules/webdatabase (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.h
diff --git a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.h b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.h
index 2325cc4537d2c918753246d9b6497636856e2738..e86c59fe2ea766e893f1a2a163059f6376d2ddea 100644
--- a/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.h
+++ b/third_party/WebKit/Source/modules/webdatabase/sqlite/SQLiteDatabase.h
@@ -79,10 +79,12 @@ class SQLiteDatabase {
void setBusyTimeout(int ms);
- // Sets the maximum size in bytes
- // Depending on per-database attributes, the size will only be settable in units that are the page size of the database, which is established at creation
- // These chunks will never be anything other than 512, 1024, 2048, 4096, 8192, 16384, or 32768 bytes in size.
- // setMaximumSize() will round the size down to the next smallest chunk if the passed size doesn't align.
+ // Sets the maximum size in bytes.
+ // Depending on per-database attributes, the size will only be settable in
+ // units that are the page size of the database, which is established at
+ // creation. These chunks will never be anything other than 512, 1024, 2048,
+ // 4096, 8192, 16384, or 32768 bytes in size. setMaximumSize() will round the
+ // size down to the next smallest chunk if the passed size doesn't align.
void setMaximumSize(int64_t);
// Gets the number of unused bytes in the database file.
@@ -108,8 +110,8 @@ class SQLiteDatabase {
// requires SQLite to store additional information about each page in
// the database file.
// INCREMENTAL - SQLite stores extra information for each page in the database
- // file, but removes the empty pages only when PRAGMA INCREMANTAL_VACUUM
- // is called.
+ // file, but removes the empty pages only when PRAGMA
+ // INCREMANTAL_VACUUM is called.
enum AutoVacuumPragma {
AutoVacuumNone = 0,
AutoVacuumFull = 1,

Powered by Google App Engine
This is Rietveld 408576698