| Index: chrome/browser/chromeos/printing/printers_sync_bridge.cc
|
| diff --git a/chrome/browser/chromeos/printing/printers_sync_bridge.cc b/chrome/browser/chromeos/printing/printers_sync_bridge.cc
|
| index 3fc5cc2c8655f0522d98568c16b340a6418b6b0a..167ac9dca286a26aa62e9d70c4e1bb4be25b706b 100644
|
| --- a/chrome/browser/chromeos/printing/printers_sync_bridge.cc
|
| +++ b/chrome/browser/chromeos/printing/printers_sync_bridge.cc
|
| @@ -86,13 +86,13 @@ class PrintersSyncBridge::StoreProxy {
|
|
|
| // Returns a new WriteBatch.
|
| std::unique_ptr<ModelTypeStore::WriteBatch> CreateWriteBatch() {
|
| - CHECK(store_);
|
| + DCHECK(store_);
|
| return store_->CreateWriteBatch();
|
| }
|
|
|
| // Commits writes to the database and updates metadata.
|
| void Commit(std::unique_ptr<ModelTypeStore::WriteBatch> batch) {
|
| - CHECK(store_);
|
| + DCHECK(store_);
|
| store_->CommitWriteBatch(
|
| std::move(batch),
|
| base::Bind(&StoreProxy::OnCommit, weak_ptr_factory_.GetWeakPtr()));
|
|
|