| Index: chrome/browser/history/in_memory_database.cc
|
| diff --git a/chrome/browser/history/in_memory_database.cc b/chrome/browser/history/in_memory_database.cc
|
| index a2ee461405edfe55757f6f5d2bf1c473630493c9..cf64b5a4f9c71a489d0229e4cea136695089d379 100644
|
| --- a/chrome/browser/history/in_memory_database.cc
|
| +++ b/chrome/browser/history/in_memory_database.cc
|
| @@ -29,10 +29,10 @@ bool InMemoryDatabase::InitDB() {
|
| }
|
|
|
| // No reason to leave data behind in memory when rows are removed.
|
| - db_.Execute("PRAGMA auto_vacuum=1");
|
| + ignore_result(db_.Execute("PRAGMA auto_vacuum=1"));
|
|
|
| // Ensure this is really an in-memory-only cache.
|
| - db_.Execute("PRAGMA temp_store=MEMORY");
|
| + ignore_result(db_.Execute("PRAGMA temp_store=MEMORY"));
|
|
|
| // Create the URL table, but leave it empty for now.
|
| if (!CreateURLTable(false)) {
|
|
|