diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-23 06:19:28 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-23 06:19:28 +0000 |
commit | 3827e970d979f0775cdbce3e2f18aeeedff0753d (patch) | |
tree | 25a6767250ae3de1a04202ae5fcefa596662bc03 /content/common/gpu/x_util.cc | |
parent | ae3076559d7c5e4dfe940cfd27fc2f41cb161428 (diff) | |
download | chromium_src-3827e970d979f0775cdbce3e2f18aeeedff0753d.zip chromium_src-3827e970d979f0775cdbce3e2f18aeeedff0753d.tar.gz chromium_src-3827e970d979f0775cdbce3e2f18aeeedff0753d.tar.bz2 |
Move a bunch of content\common code into the content namespace.
Review URL: https://codereview.chromium.org/11225045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163514 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/gpu/x_util.cc')
-rw-r--r-- | content/common/gpu/x_util.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/common/gpu/x_util.cc b/content/common/gpu/x_util.cc index 486b00e..df14cee 100644 --- a/content/common/gpu/x_util.cc +++ b/content/common/gpu/x_util.cc @@ -6,6 +6,10 @@ #include <X11/Xutil.h> +namespace content { + void ScopedPtrXFree::operator()(void* x) const { ::XFree(x); } + +} // namespace content |