blob: 41df9d41b1009c78317026cc35a8ecd391083c7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/views/frame/top_container_view.h"
#include "chrome/browser/ui/views/frame/browser_frame.h"
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "chrome/browser/ui/views/frame/immersive_mode_controller.h"
#include "ui/compositor/paint_context.h"
TopContainerView::TopContainerView(BrowserView* browser_view)
: browser_view_(browser_view) {
}
TopContainerView::~TopContainerView() {
}
const char* TopContainerView::GetClassName() const {
return "TopContainerView";
}
void TopContainerView::PaintChildren(const ui::PaintContext& context) {
if (browser_view_->immersive_mode_controller()->IsRevealed()) {
// Top-views depend on parts of the frame (themes, window title, window
// controls) being painted underneath them. Clip rect has already been set
// to the bounds of this view, so just paint the frame. Use a clone without
// invalidation info, as we're painting something outside of the normal
// parent-child relationship, so invalidations are no longer in the correct
// space to compare.
browser_view_->frame()->GetFrameView()->Paint(ui::PaintContext(
context, ui::PaintContext::CLONE_WITHOUT_INVALIDATION));
}
View::PaintChildren(context);
}
|