chromium/sql/transaction.cc

// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "sql/transaction.h"

#include "base/check.h"
#include "base/dcheck_is_on.h"
#include "base/sequence_checker.h"
#include "sql/database.h"
#include "sql/internal_api_token.h"

namespace sql {

Transaction::Transaction(Database* database) {}

Transaction::~Transaction() {}

bool Transaction::Begin() {}

void Transaction::Rollback() {}

bool Transaction::Commit() {}

}  // namespace sql