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

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

Issue 2877483003: Implements core logic for Pixel Canvas (Closed)
Patch Set: Update tests Created 3 years, 5 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
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 37094f100aab8d64223ea15e2dc3bf361d46f2c0..978ad0a282a1103d3eca4dabf73cd155bbcfff3c 100644
--- a/chrome/browser/ui/views/frame/browser_view.cc
+++ b/chrome/browser/ui/views/frame/browser_view.cc
@@ -1987,8 +1987,8 @@ void BrowserView::ViewHierarchyChanged(
}
}
-void BrowserView::PaintChildren(const ui::PaintContext& context) {
- views::ClientView::PaintChildren(context);
+void BrowserView::PaintChildren(const ui::PaintInfo& paint_info) {
+ views::ClientView::PaintChildren(paint_info);
// Don't reset the instance before it had a chance to get compositor callback.
if (!histogram_helper_) {
histogram_helper_ = BrowserWindowHistogramHelper::

Powered by Google App Engine
This is Rietveld 408576698