summaryrefslogtreecommitdiffstats
path: root/chrome/renderer
diff options
context:
space:
mode:
authorjaphet <japhet@chromium.org>2014-09-08 23:20:57 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-09 06:23:16 +0000
commit02cfd5ccc819ce649db8ff032d43fb16ee3167d9 (patch)
tree48583d05604b93aa73098bbeaf1e01026da01d46 /chrome/renderer
parent3895fc1cf74afc344677112d00ad31b0d3311807 (diff)
downloadchromium_src-02cfd5ccc819ce649db8ff032d43fb16ee3167d9.zip
chromium_src-02cfd5ccc819ce649db8ff032d43fb16ee3167d9.tar.gz
chromium_src-02cfd5ccc819ce649db8ff032d43fb16ee3167d9.tar.bz2
Remove last use of WebFrame::isLoading()
All other uses are from a WebLocalFrame, and the concept is local-specific. This will enable us to move it to WebLocalFrame in the blink repo. BUG= Review URL: https://codereview.chromium.org/557483002 Cr-Commit-Position: refs/heads/master@{#293869}
Diffstat (limited to 'chrome/renderer')
-rw-r--r--chrome/renderer/printing/print_web_view_helper.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/printing/print_web_view_helper.cc b/chrome/renderer/printing/print_web_view_helper.cc
index d380777..6077438 100644
--- a/chrome/renderer/printing/print_web_view_helper.cc
+++ b/chrome/renderer/printing/print_web_view_helper.cc
@@ -753,7 +753,7 @@ void PrepareFrameAndViewForPrint::RestoreSize() {
}
void PrepareFrameAndViewForPrint::FinishPrinting() {
- blink::WebFrame* frame = frame_.GetFrame();
+ blink::WebLocalFrame* frame = frame_.GetFrame();
if (frame) {
blink::WebView* web_view = frame->view();
if (is_printing_started_) {