Correctly handle tab navigation in the app list.
[chromium-blink-merge.git] / sync / test / test_transaction_observer.cc
blob454d986f4c8ad57162aeb3febbcd7a03cdf5d490
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "sync/test/test_transaction_observer.h"
7 namespace syncer {
9 namespace syncable {
11 TestTransactionObserver::TestTransactionObserver()
12 : transactions_observed_(0) {
15 TestTransactionObserver::~TestTransactionObserver() {
18 int TestTransactionObserver::transactions_observed() {
19 return transactions_observed_;
22 void TestTransactionObserver::OnTransactionWrite(
23 const ImmutableWriteTransactionInfo& write_transaction_info,
24 ModelTypeSet models_with_changes) {
25 transactions_observed_++;
28 } // namespace syncable
30 } // namespace syncer