diff options
author | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-15 14:26:16 +0000 |
---|---|---|
committer | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-15 14:26:16 +0000 |
commit | cf63dc2661dc1710ca7fd1d6fe196fc4355390f6 (patch) | |
tree | 2f164476cde341e580f0ec38cd9c0eb8963260be /chrome/test/base | |
parent | 51b91fae89b1dd2671887a86df34e7bd93b2710e (diff) | |
download | chromium_src-cf63dc2661dc1710ca7fd1d6fe196fc4355390f6.zip chromium_src-cf63dc2661dc1710ca7fd1d6fe196fc4355390f6.tar.gz chromium_src-cf63dc2661dc1710ca7fd1d6fe196fc4355390f6.tar.bz2 |
Android: Remove a few more printing sources.
There were some places that we didn't catch with
https://chromiumcodereview.appspot.com/9447086/
BUG=117407
TEST=
Review URL: https://chromiumcodereview.appspot.com/9695038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126907 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/base')
-rw-r--r-- | chrome/test/base/testing_browser_process.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/test/base/testing_browser_process.cc b/chrome/test/base/testing_browser_process.cc index 2f0ddac..b573e38 100644 --- a/chrome/test/base/testing_browser_process.cc +++ b/chrome/test/base/testing_browser_process.cc @@ -178,18 +178,28 @@ printing::PrintJobManager* TestingBrowserProcess::print_job_manager() { printing::PrintPreviewTabController* TestingBrowserProcess::print_preview_tab_controller() { +#if defined(OS_ANDROID) + NOTIMPLEMENTED(); + return NULL; +#else if (!print_preview_tab_controller_.get()) print_preview_tab_controller_ = new printing::PrintPreviewTabController(); return print_preview_tab_controller_.get(); +#endif } printing::BackgroundPrintingManager* TestingBrowserProcess::background_printing_manager() { +#if defined(OS_ANDROID) + NOTIMPLEMENTED(); + return NULL; +#else if (!background_printing_manager_.get()) { background_printing_manager_.reset( new printing::BackgroundPrintingManager()); } return background_printing_manager_.get(); +#endif } const std::string& TestingBrowserProcess::GetApplicationLocale() { |