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

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

Issue 2877483003: Implements core logic for Pixel Canvas (Closed)
Patch Set: Resolving comments 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 37240d20517f232527a06c83a067d1733233e6bb..66066123144263da11c318a5ad3f25ed483f23a3 100644
--- a/chrome/browser/ui/views/frame/browser_view.cc
+++ b/chrome/browser/ui/views/frame/browser_view.cc
@@ -1993,8 +1993,8 @@ void BrowserView::ViewHierarchyChanged(
#endif
}
-void BrowserView::PaintChildren(const ui::PaintContext& context) {
- views::ClientView::PaintChildren(context);
+void BrowserView::PaintChildren(const views::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