Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Unified Diff: views/native_theme_painter.h

Issue 8771006: views: Move the remaining file from views/ to ui/views/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « views/native_theme_delegate.h ('k') | views/native_theme_painter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/native_theme_painter.h
diff --git a/views/native_theme_painter.h b/views/native_theme_painter.h
deleted file mode 100644
index 1d52858c426539d0cc03b538648ad0181fa9b6f6..0000000000000000000000000000000000000000
--- a/views/native_theme_painter.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright (c) 2011 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 VIEWS_NATIVE_THEME_PAINTER_H_
-#define VIEWS_NATIVE_THEME_PAINTER_H_
-#pragma once
-
-#include "base/compiler_specific.h"
-#include "views/painter.h"
-
-namespace gfx {
-class Canvas;
-class Size;
-}
-
-namespace views {
-
-class NativeThemeDelegate;
-
-// A Painter that uses NativeTheme to implement painting and sizing. A
-// theme delegate must be given at construction time so that the appropriate
-// painting and sizing can be done.
-class VIEWS_EXPORT NativeThemePainter : public Painter {
- public:
- explicit NativeThemePainter(NativeThemeDelegate* delegate);
-
- virtual ~NativeThemePainter() {}
-
- // Returns the preferred size of the native part being painted.
- gfx::Size GetPreferredSize();
-
- private:
- // The delegate the controls the appearance of this painter.
- NativeThemeDelegate* delegate_;
-
- // Overridden from Painter:
- virtual void Paint(int w, int h, gfx::Canvas* canvas) OVERRIDE;
-
- DISALLOW_COPY_AND_ASSIGN(NativeThemePainter);
-};
-
-} // namespace views
-
-#endif // VIEWS_NATIVE_THEME_PAINTER_H_
« no previous file with comments | « views/native_theme_delegate.h ('k') | views/native_theme_painter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698