ThreadWatcher - run JankTimeBomb::Alarm test only in the channels it is
[chromium-blink-merge.git] / dbus / scoped_dbus_error.cc
blobfa049718ef049614772226221e1bdcded777ec21
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 "dbus/scoped_dbus_error.h"
7 namespace dbus {
9 ScopedDBusError::ScopedDBusError() {
10 dbus_error_init(&error_);
13 ScopedDBusError::~ScopedDBusError() {
14 dbus_error_free(&error_);
17 bool ScopedDBusError::is_set() const {
18 return dbus_error_is_set(&error_);
21 } // namespace dbus