Chromium Code Reviews| Index: chromeos/dbus/stub_dbus_thread_manager_helper.h |
| diff --git a/chromeos/dbus/stub_dbus_thread_manager_helper.h b/chromeos/dbus/stub_dbus_thread_manager_helper.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f9af275f32d79a2c594da9aa596ea7815db5cab9 |
| --- /dev/null |
| +++ b/chromeos/dbus/stub_dbus_thread_manager_helper.h |
| @@ -0,0 +1,18 @@ |
| +// Copyright 2013 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 CHROMEOS_DBUS_STUB_DBUS_THREAD_MANAGER_HELPER_H_ |
| +#define CHROMEOS_DBUS_STUB_DBUS_THREAD_MANAGER_HELPER_H_ |
| + |
| +#include "chromeos/chromeos_export.h" |
| + |
| +namespace chromeos { |
| + |
| +class FakeDBusThreadManager; |
| + |
| +CHROMEOS_EXPORT void SetStubClients(FakeDBusThreadManager* manager); |
|
satorux1
2013/11/05 03:55:16
Function comment is missing.
Seems to me that th
pneubeck (no reviews)
2013/11/05 10:03:04
By providing this separate function, we can do the
satorux1
2013/11/05 10:18:56
Oh I see. Does this have to be a function in a sep
pneubeck (no reviews)
2013/11/05 10:58:44
Since it's used in dbus_thread_manager.cc anyways,
pneubeck (no reviews)
2013/11/05 16:14:59
Done.
|
| + |
| +} |
| + |
| +#endif // CHROMEOS_DBUS_STUB_DBUS_THREAD_MANAGER_HELPER_H_ |