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

Side by Side Diff: Source/core/paint/ThemePainter.h

Issue 1158323004: Remove the virtual ThemePainter::paintMediaCastButton() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaseline Created 5 years, 6 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « LayoutTests/TestExpectations ('k') | Source/core/paint/ThemePainter.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of the theme implementation for form controls in WebCore. 2 * This file is part of the theme implementation for form controls in WebCore.
3 * 3 *
4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 virtual bool paintMenuList(LayoutObject*, const PaintInfo&, const IntRect&) { return true; } 57 virtual bool paintMenuList(LayoutObject*, const PaintInfo&, const IntRect&) { return true; }
58 virtual bool paintMenuListButton(LayoutObject*, const PaintInfo&, const IntR ect&) { return true; } 58 virtual bool paintMenuListButton(LayoutObject*, const PaintInfo&, const IntR ect&) { return true; }
59 virtual bool paintMeter(LayoutObject*, const PaintInfo&, const IntRect&); 59 virtual bool paintMeter(LayoutObject*, const PaintInfo&, const IntRect&);
60 virtual bool paintProgressBar(LayoutObject*, const PaintInfo&, const IntRect &) { return true; } 60 virtual bool paintProgressBar(LayoutObject*, const PaintInfo&, const IntRect &) { return true; }
61 virtual bool paintSliderTrack(LayoutObject*, const PaintInfo&, const IntRect &) { return true; } 61 virtual bool paintSliderTrack(LayoutObject*, const PaintInfo&, const IntRect &) { return true; }
62 virtual bool paintSliderThumb(LayoutObject*, const PaintInfo&, const IntRect &) { return true; } 62 virtual bool paintSliderThumb(LayoutObject*, const PaintInfo&, const IntRect &) { return true; }
63 virtual bool paintSearchField(LayoutObject*, const PaintInfo&, const IntRect &) { return true; } 63 virtual bool paintSearchField(LayoutObject*, const PaintInfo&, const IntRect &) { return true; }
64 virtual bool paintSearchFieldCancelButton(LayoutObject*, const PaintInfo&, c onst IntRect&) { return true; } 64 virtual bool paintSearchFieldCancelButton(LayoutObject*, const PaintInfo&, c onst IntRect&) { return true; }
65 virtual bool paintSearchFieldDecoration(LayoutObject*, const PaintInfo&, con st IntRect&) { return true; } 65 virtual bool paintSearchFieldDecoration(LayoutObject*, const PaintInfo&, con st IntRect&) { return true; }
66 virtual bool paintSearchFieldResultsDecoration(LayoutObject*, const PaintInf o&, const IntRect&) { return true; } 66 virtual bool paintSearchFieldResultsDecoration(LayoutObject*, const PaintInf o&, const IntRect&) { return true; }
67 virtual bool paintMediaCastButton(LayoutObject*, const PaintInfo&, const Int Rect&) { return true; }
68 67
69 bool paintUsingFallbackTheme(LayoutObject*, const PaintInfo&, const IntRect& ); 68 bool paintUsingFallbackTheme(LayoutObject*, const PaintInfo&, const IntRect& );
70 bool paintCheckboxUsingFallbackTheme(LayoutObject*, const PaintInfo&, const IntRect&); 69 bool paintCheckboxUsingFallbackTheme(LayoutObject*, const PaintInfo&, const IntRect&);
71 bool paintRadioUsingFallbackTheme(LayoutObject*, const PaintInfo&, const Int Rect&); 70 bool paintRadioUsingFallbackTheme(LayoutObject*, const PaintInfo&, const Int Rect&);
72 }; 71 };
73 72
74 } // namespace blink 73 } // namespace blink
75 74
76 #endif // ThemePainter_h 75 #endif // ThemePainter_h
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | Source/core/paint/ThemePainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698