diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-01 22:35:27 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-01 22:35:27 +0000 |
commit | b4bb25099b2bc9b1bc1df1b231c859ef82110e7d (patch) | |
tree | 5bf82ee33816b9066e5a829b6a256a747021fc93 /chrome/renderer/print_web_view_helper.cc | |
parent | 87772ec3b0265c72efd0bace14b30fafeee97769 (diff) | |
download | chromium_src-b4bb25099b2bc9b1bc1df1b231c859ef82110e7d.zip chromium_src-b4bb25099b2bc9b1bc1df1b231c859ef82110e7d.tar.gz chromium_src-b4bb25099b2bc9b1bc1df1b231c859ef82110e7d.tar.bz2 |
Move various methods from glue/webview.h to api/public/WebView.h
I'll re-order the methods in webview_impl.cc in a follow-up CL. I
wanted to keep this one easy to review.
SetBackForwardListSize is no longer necessary given that
BackForwardListChromium.cpp doesn't care about its capacity.
R=dglazkov
BUG=10033
TEST=none
Originally reviewed here: http://codereview.chromium.org/251051
Review URL: http://codereview.chromium.org/255042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27780 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/print_web_view_helper.cc')
-rw-r--r-- | chrome/renderer/print_web_view_helper.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/print_web_view_helper.cc b/chrome/renderer/print_web_view_helper.cc index c516c0e..86c5fc1 100644 --- a/chrome/renderer/print_web_view_helper.cc +++ b/chrome/renderer/print_web_view_helper.cc @@ -98,7 +98,7 @@ bool PrintWebViewHelper::CopyAndPrint(const ViewMsg_PrintPages_Params& params, print_web_view_.reset(WebView::Create(this)); prefs.Apply(print_web_view_.get()); - print_web_view_->InitializeMainFrame(NULL); + print_web_view_->initializeMainFrame(NULL); print_pages_params_.reset(new ViewMsg_PrintPages_Params(params)); print_pages_params_->pages.clear(); // Print all pages of selection. |