| Index: chrome/browser/themes/theme_properties.cc
|
| diff --git a/chrome/browser/themes/theme_properties.cc b/chrome/browser/themes/theme_properties.cc
|
| index aaf7b7e08815a44b4c465116e72790aefc2a3451..30462989d5d967d1a095f9d342a01addbfe6d5ef 100644
|
| --- a/chrome/browser/themes/theme_properties.cc
|
| +++ b/chrome/browser/themes/theme_properties.cc
|
| @@ -353,12 +353,19 @@ SkColor ThemeProperties::GetDefaultColor(int id, bool otr) {
|
| case COLOR_TOOLBAR_STROKE_THEME_INACTIVE:
|
| return kDefaultColorToolbarStrokeThemeInactive;
|
| #endif
|
| +#if defined(OS_WIN)
|
| + case COLOR_ACCENT_BORDER:
|
| + NOTREACHED();
|
| + return gfx::kPlaceholderColor;
|
| +#endif
|
| +
|
| case COLOR_FRAME_INCOGNITO:
|
| case COLOR_FRAME_INCOGNITO_INACTIVE:
|
| NOTREACHED() << "These values should be queried via their respective "
|
| "non-incognito equivalents and an appropriate |otr| "
|
| "value.";
|
| - default:
|
| return gfx::kPlaceholderColor;
|
| }
|
| +
|
| + return gfx::kPlaceholderColor;
|
| }
|
|
|