diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-22 18:19:27 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-22 18:19:27 +0000 |
commit | 0bfbf88d75aae7adf722238e174dd11e07c9d133 (patch) | |
tree | 5270a03f23333f06db0599d3105d3bf81e9e879c /chrome/browser/printing/print_view_manager.cc | |
parent | bd078730e1d095f1948a2d2b86856cfdfa002dc0 (diff) | |
download | chromium_src-0bfbf88d75aae7adf722238e174dd11e07c9d133.zip chromium_src-0bfbf88d75aae7adf722238e174dd11e07c9d133.tar.gz chromium_src-0bfbf88d75aae7adf722238e174dd11e07c9d133.tar.bz2 |
Move the remaining TabContents methods to the WebContents interface, switching unix_hacker to CamelCase as necessary. I've moved the WebContents definitions to be in the same order as the declarations.
BUG=98716
TBR=dpranke
Review URL: http://codereview.chromium.org/8958003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115560 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/printing/print_view_manager.cc')
-rw-r--r-- | chrome/browser/printing/print_view_manager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/printing/print_view_manager.cc b/chrome/browser/printing/print_view_manager.cc index 4a77e50..21a963f 100644 --- a/chrome/browser/printing/print_view_manager.cc +++ b/chrome/browser/printing/print_view_manager.cc @@ -594,7 +594,7 @@ bool PrintViewManager::OpportunisticallyCreatePrintJob(int cookie) { bool PrintViewManager::PrintNowInternal(IPC::Message* message) { // Don't print / print preview interstitials. - if (tab_contents()->showing_interstitial_page()) + if (tab_contents()->ShowingInterstitialPage()) return false; return Send(message); } |