Chromium Code Reviews| Index: chrome/views/view.cc |
| =================================================================== |
| --- chrome/views/view.cc (revision 10688) |
| +++ chrome/views/view.cc (working copy) |
| @@ -626,6 +626,12 @@ |
| ViewHierarchyChangedImpl(true, true, parent, child); |
| } |
| +void View::ThemeChanged() { |
| + int c = GetChildViewCount(); |
| + for (int i = c - 1; i >= 0; --i) |
| + GetChildViewAt(i)->ThemeChanged(); |
| +} |
| + |
| #ifndef NDEBUG |
| bool View::IsProcessingPaint() const { |
| return GetParent() && GetParent()->IsProcessingPaint(); |