summaryrefslogtreecommitdiffstats
path: root/chrome/common/pref_store_observer_mock.h
blob: 2a492848e9e0d57c189d9141b89073d2c17fad58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_COMMON_PREF_STORE_OBSERVER_MOCK_H_
#define CHROME_COMMON_PREF_STORE_OBSERVER_MOCK_H_
#pragma once

#include "base/basictypes.h"
#include "chrome/common/pref_store.h"
#include "testing/gmock/include/gmock/gmock.h"

// A gmock-ified implementation of PrefStore::Observer.
class PrefStoreObserverMock : public PrefStore::Observer {
 public:
  PrefStoreObserverMock() {}
  virtual ~PrefStoreObserverMock() {}

  MOCK_METHOD1(OnPrefValueChanged, void(const std::string&));
  MOCK_METHOD0(OnInitializationCompleted, void());

 private:
  DISALLOW_COPY_AND_ASSIGN(PrefStoreObserverMock);
};

#endif  // CHROME_COMMON_PREF_STORE_OBSERVER_MOCK_H_