blob: 0d5ade1b3f222991ab68c706ac14ba4238996102 (
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
|
// Copyright (c) 2012 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 "content/renderer/render_view_impl.h"
#include "base/command_line.h"
#include "base/message_loop.h"
#include "cc/trees/layer_tree_host.h"
#include "content/renderer/gpu/render_widget_compositor.h"
namespace content {
void RenderViewImpl::OnUpdateTopControlsState(bool enable_hiding,
bool enable_showing,
bool animate) {
// TODO(tedchoc): Investigate why messages are getting here before the
// compositor has been initialized.
LOG_IF(WARNING, !compositor_) << "OnUpdateTopControlsState was unhandled.";
if (compositor_)
compositor_->UpdateTopControlsState(enable_hiding, enable_showing, animate);
}
} // namespace content
|