blob: 18a42b5ff872fef03484253b8d576bf1e76f6af7 (
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
36
37
38
39
40
41
42
43
44
45
46
47
|
// 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/switches.h"
#include "content/common/view_messages.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
namespace content {
void RenderViewImpl::ScheduleUpdateFrameInfo() {
if (CommandLine::ForCurrentProcess()->HasSwitch(
cc::switches::kEnableCompositorFrameMessage))
return;
if (update_frame_info_scheduled_)
return;
update_frame_info_scheduled_ = true;
MessageLoop::current()->PostTask(
FROM_HERE,
base::Bind(&RenderViewImpl::SendUpdateFrameInfo, this));
}
void RenderViewImpl::SendUpdateFrameInfo() {
if (CommandLine::ForCurrentProcess()->HasSwitch(
cc::switches::kEnableCompositorFrameMessage))
return;
update_frame_info_scheduled_ = false;
if (!webview() || !webview()->mainFrame())
return;
Send(new ViewHostMsg_UpdateFrameInfo(
routing_id_,
GetScrollOffset(),
webview()->pageScaleFactor(),
webview()->minimumPageScaleFactor(),
webview()->maximumPageScaleFactor(),
gfx::Size(webview()->mainFrame()->contentsSize())));
}
} // namespace content
|