summaryrefslogtreecommitdiff
path: root/chromium/ui/views/background.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/views/background.h')
-rw-r--r--chromium/ui/views/background.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/chromium/ui/views/background.h b/chromium/ui/views/background.h
index 0d7d65cdcd6..d00418ad453 100644
--- a/chromium/ui/views/background.h
+++ b/chromium/ui/views/background.h
@@ -90,19 +90,8 @@ class VIEWS_EXPORT Background {
// backgrounds, this is not useful (returns a default color).
SkColor get_color() const { return color_; }
-#if defined(OS_WIN)
- // TODO(port): Make GetNativeControlBrush portable (currently uses HBRUSH).
-
- // Get the brush that was specified by SetNativeControlColor
- HBRUSH GetNativeControlBrush() const;
-#endif // defined(OS_WIN)
-
private:
SkColor color_;
-#if defined(OS_WIN)
- // TODO(port): Create portable replacement for HBRUSH.
- mutable HBRUSH native_control_brush_;
-#endif // defined(OS_WIN)
DISALLOW_COPY_AND_ASSIGN(Background);
};