summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_browser_main_posix.cc
diff options
context:
space:
mode:
authorabodenha@chromium.org <abodenha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-08 18:45:15 +0000
committerabodenha@chromium.org <abodenha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-08 18:45:15 +0000
commitea5e81d9e8236e0cfa9c9de9a39f63e4e7c476b3 (patch)
treee4ee09e4de3ada9c22bb8c3205fb40c3d080e280 /chrome/browser/chrome_browser_main_posix.cc
parent01632e66fba4212e7e0ac5773ced0c4c1cc94564 (diff)
downloadchromium_src-ea5e81d9e8236e0cfa9c9de9a39f63e4e7c476b3.zip
chromium_src-ea5e81d9e8236e0cfa9c9de9a39f63e4e7c476b3.tar.gz
chromium_src-ea5e81d9e8236e0cfa9c9de9a39f63e4e7c476b3.tar.bz2
Get printing working in Aura.
Splits printing_context_cairo into gtk and no system dialog versions. No system dialog versions are used in Chrome OS and Aura. BUG=http://code.google.com/p/chromium-os/issues/detail?id=13915 TEST=Build Chrome with Aura. Hit ctrl-p from any web page. Print preview page should come up and should be able to print via Cloud Print. Review URL: http://codereview.chromium.org/8372030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109059 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_browser_main_posix.cc')
-rw-r--r--chrome/browser/chrome_browser_main_posix.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chrome_browser_main_posix.cc b/chrome/browser/chrome_browser_main_posix.cc
index f90bb57..3140cb8 100644
--- a/chrome/browser/chrome_browser_main_posix.cc
+++ b/chrome/browser/chrome_browser_main_posix.cc
@@ -259,7 +259,7 @@ void ChromeBrowserMainPartsPosix::PostMainMessageLoopStart() {
CHECK(sigaction(SIGHUP, &action, NULL) == 0);
#if defined(TOOLKIT_USES_GTK) && !defined(OS_CHROMEOS)
- printing::PrintingContextCairo::SetCreatePrintDialogFunction(
+ printing::PrintingContextGtk::SetCreatePrintDialogFunction(
&PrintDialogGtk::CreatePrintDialog);
#endif
}