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

Side by Side Diff: chrome/browser/themes/theme_properties.cc

Issue 1971463002: Get rid of some lingering MD-specific raster assets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: msw review Created 4 years, 7 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/themes/theme_properties.h" 5 #include "chrome/browser/themes/theme_properties.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/strings/string_split.h" 10 #include "base/strings/string_split.h"
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 IDR_HOME, 193 IDR_HOME,
194 IDR_HOME_H, 194 IDR_HOME_H,
195 IDR_HOME_P, 195 IDR_HOME_P,
196 IDR_RELOAD, 196 IDR_RELOAD,
197 IDR_RELOAD_H, 197 IDR_RELOAD_H,
198 IDR_RELOAD_P, 198 IDR_RELOAD_P,
199 IDR_STOP, 199 IDR_STOP,
200 IDR_STOP_D, 200 IDR_STOP_D,
201 IDR_STOP_H, 201 IDR_STOP_H,
202 IDR_STOP_P, 202 IDR_STOP_P,
203 #if defined(OS_MACOSX)
203 IDR_BROWSER_ACTIONS_OVERFLOW, 204 IDR_BROWSER_ACTIONS_OVERFLOW,
204 IDR_BROWSER_ACTIONS_OVERFLOW_H, 205 IDR_BROWSER_ACTIONS_OVERFLOW_H,
205 IDR_BROWSER_ACTIONS_OVERFLOW_P, 206 IDR_BROWSER_ACTIONS_OVERFLOW_P,
207 #endif
206 IDR_TOOLS, 208 IDR_TOOLS,
207 IDR_TOOLS_H, 209 IDR_TOOLS_H,
208 IDR_TOOLS_P, 210 IDR_TOOLS_P,
209 IDR_MENU_DROPARROW, 211 IDR_MENU_DROPARROW,
210 IDR_TOOLBAR_BEZEL_HOVER, 212 IDR_TOOLBAR_BEZEL_HOVER,
211 IDR_TOOLBAR_BEZEL_PRESSED, 213 IDR_TOOLBAR_BEZEL_PRESSED,
212 IDR_TOOLS_BAR, 214 IDR_TOOLS_BAR,
213 }; 215 };
214 216
215 SkColor TintForUnderline(SkColor input) { 217 SkColor TintForUnderline(SkColor input) {
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 #endif 400 #endif
399 case COLOR_FRAME_INCOGNITO: 401 case COLOR_FRAME_INCOGNITO:
400 case COLOR_FRAME_INCOGNITO_INACTIVE: 402 case COLOR_FRAME_INCOGNITO_INACTIVE:
401 NOTREACHED() << "These values should be queried via their respective " 403 NOTREACHED() << "These values should be queried via their respective "
402 "non-incognito equivalents and an appropriate |otr| " 404 "non-incognito equivalents and an appropriate |otr| "
403 "value."; 405 "value.";
404 default: 406 default:
405 return gfx::kPlaceholderColor; 407 return gfx::kPlaceholderColor;
406 } 408 }
407 } 409 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698