diff options
Diffstat (limited to 'skia/ext/platform_device_linux.cc')
-rw-r--r-- | skia/ext/platform_device_linux.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/skia/ext/platform_device_linux.cc b/skia/ext/platform_device_linux.cc new file mode 100644 index 0000000..f148ed1 --- /dev/null +++ b/skia/ext/platform_device_linux.cc @@ -0,0 +1,13 @@ +// Copyright (c) 2006-2008 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. + +#include "skia/ext/platform_device_linux.h" + +namespace gfx { + +PlatformDeviceLinux::PlatformDeviceLinux(const SkBitmap& bitmap) + : SkDevice(bitmap) { +} + +} // namespace gfx |