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

Unified Diff: chrome/browser/ui/views/frame/browser_view.cc

Issue 2062353002: Replace CONTROL_BACKGROUND and DETACHED_BOOKMARK_BAR_BACKGROUND by COLOR_NTP_BACKGROUND (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More clang build fix Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/libgtk2ui/gtk2_ui.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/frame/browser_view.cc
diff --git a/chrome/browser/ui/views/frame/browser_view.cc b/chrome/browser/ui/views/frame/browser_view.cc
index 2e51b4b4eb9ce31cf8b059d69fb9978a89e97d8e..7ee8bfcbf33d87143545bc3841dd2ef8d4fd4cbb 100644
--- a/chrome/browser/ui/views/frame/browser_view.cc
+++ b/chrome/browser/ui/views/frame/browser_view.cc
@@ -224,11 +224,9 @@ void PaintDetachedBookmarkBar(gfx::Canvas* canvas,
// The detached background color may be partially transparent, but the layer
// for |view| must be painted opaquely to avoid subpixel anti-aliasing
// artifacts, so we recreate the contents container base color here.
- canvas->FillRect(fill_rect,
- tp->GetColor(ThemeProperties::COLOR_CONTROL_BACKGROUND));
canvas->FillRect(
fill_rect,
- tp->GetColor(ThemeProperties::COLOR_DETACHED_BOOKMARK_BAR_BACKGROUND));
+ tp->GetColor(ThemeProperties::COLOR_NTP_BACKGROUND) | 0xFF000000);
Peter Kasting 2016/07/01 01:10:02 Use SkColorSetA() instead of direct bit manipulati
Julien Isorce Samsung 2016/07/01 13:27:45 Done thx!
// Draw the separators above and below bookmark bar;
// if animating, these are fading in/out.
@@ -2069,7 +2067,7 @@ void BrowserView::InitViews() {
contents_container_ = new views::View();
contents_container_->set_background(views::Background::CreateSolidBackground(
- GetThemeProvider()->GetColor(ThemeProperties::COLOR_CONTROL_BACKGROUND)));
+ GetThemeProvider()->GetColor(ThemeProperties::COLOR_NTP_BACKGROUND)));
contents_container_->AddChildView(devtools_web_view_);
contents_container_->AddChildView(contents_web_view_);
contents_container_->SetLayoutManager(new ContentsLayoutManager(
« no previous file with comments | « chrome/browser/ui/libgtk2ui/gtk2_ui.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698