summaryrefslogtreecommitdiffstats
path: root/views/view.h
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-16 00:58:56 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-16 00:58:56 +0000
commit9ac174e96eb86eb78affd1b744231b90d831b1ac (patch)
tree0b2c7567f60a37e245fd49da9258484f49b58bd3 /views/view.h
parentc5e13f2e76e22aa0d68e548dd006b242eb65be1c (diff)
downloadchromium_src-9ac174e96eb86eb78affd1b744231b90d831b1ac.zip
chromium_src-9ac174e96eb86eb78affd1b744231b90d831b1ac.tar.gz
chromium_src-9ac174e96eb86eb78affd1b744231b90d831b1ac.tar.bz2
Fix some infobar drawing glitches:
* Glass mode popups used the wrong separator color, making the arrow look weird * The stroke/fill were not being drawn quite correctly due to some subtle AA-related issues BUG=none TEST=none Review URL: http://codereview.chromium.org/6875017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81846 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/view.h')
-rw-r--r--views/view.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/views/view.h b/views/view.h
index 5f98564..8fe4de8 100644
--- a/views/view.h
+++ b/views/view.h
@@ -534,6 +534,7 @@ class View : public AcceleratorTarget {
// The background object is owned by this object and may be NULL.
void set_background(Background* b) { background_.reset(b); }
const Background* background() const { return background_.get(); }
+ Background* background() { return background_.get(); }
// The border object is owned by this object and may be NULL.
void set_border(Border* b) { border_.reset(b); }