From 267c03d478d9c83ef8c37999f3abb1cd822881ff Mon Sep 17 00:00:00 2001 From: "sail@chromium.org" Date: Wed, 2 Feb 2011 23:03:07 +0000 Subject: Move src/gfx/ to src/ui/gfx To reduce the size of this change I've left stub header files in src/gfx/. Once all includes have been updated I'll delete the stub files. BUG=71063 TEST=Still doing test builds. Review URL: http://codereview.chromium.org/6246027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73530 0039d316-1c4b-4281-b951-d872f2087c98 --- ui/gfx/brush.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 ui/gfx/brush.h (limited to 'ui/gfx/brush.h') diff --git a/ui/gfx/brush.h b/ui/gfx/brush.h new file mode 100644 index 0000000..d6e92af --- /dev/null +++ b/ui/gfx/brush.h @@ -0,0 +1,24 @@ +// Copyright (c) 2010 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 UI_GFX_BRUSH_H_ +#define UI_GFX_BRUSH_H_ +#pragma once + +namespace gfx { + +// An object that encapsulates a platform native brush. +// Subclasses handle memory management of the underlying native brush. +class Brush { + public: + Brush() {} + virtual ~Brush() {} + + private: + DISALLOW_COPY_AND_ASSIGN(Brush); +}; + +} // namespace gfx + +#endif // UI_GFX_BRUSH_H_ -- cgit v1.1