• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
4 
5 #ifndef CHROMEOS_DBUS_DBUS_CLIENT_IMPLEMENTATION_TYPE_H_
6 #define CHROMEOS_DBUS_DBUS_CLIENT_IMPLEMENTATION_TYPE_H_
7 
8 namespace chromeos {
9 
10 // An enum to describe the desired type of D-Bus client implemenation.
11 enum DBusClientImplementationType {
12   REAL_DBUS_CLIENT_IMPLEMENTATION,  // The real implementation.
13   STUB_DBUS_CLIENT_IMPLEMENTATION,  // A stub implementation.
14 };
15 
16 }  // namespace chromeos
17 
18 #endif  // CHROMEOS_DBUS_DBUS_CLIENT_IMPLEMENTATION_TYPE_H_
19