diff options
author | avakulenko <avakulenko@chromium.org> | 2014-09-24 11:47:52 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-24 18:48:37 +0000 |
commit | 7c5b40c126928ab99f86a973994243ed7f765250 (patch) | |
tree | 81dd2de85db4213930a5fd5fad20fc3b0ead2187 /dbus/dbus.gyp | |
parent | f35425b2de4b7a08b84dc0745579d6964a3c8a0b (diff) | |
download | chromium_src-7c5b40c126928ab99f86a973994243ed7f765250.zip chromium_src-7c5b40c126928ab99f86a973994243ed7f765250.tar.gz chromium_src-7c5b40c126928ab99f86a973994243ed7f765250.tar.bz2 |
Move inline som functions ScopedDBusError into a .cc file
dbus::ScopedDBusError has inline constructor/destructor and
is_set() method that call into libdbus-1. By placing these
function calls in a header file, we add implicit link dependency
on components that need to use ScopedDBusError. If we move
them out to a .cc file, the dependency will be localized to
libchrome.
BUG=chromium:416628
TEST=dbus_unittests pass
Review URL: https://codereview.chromium.org/592793004
Cr-Commit-Position: refs/heads/master@{#296478}
Diffstat (limited to 'dbus/dbus.gyp')
-rw-r--r-- | dbus/dbus.gyp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dbus/dbus.gyp b/dbus/dbus.gyp index a69e8fd..daac2e2 100644 --- a/dbus/dbus.gyp +++ b/dbus/dbus.gyp @@ -41,6 +41,7 @@ 'object_proxy.h', 'property.cc', 'property.h', + 'scoped_dbus_error.cc', 'scoped_dbus_error.h', 'string_util.cc', 'string_util.h', |