0

No need for Aura stubs under ChromeOS since we already have a sans-GTK impl.

BUG=none
TEST=none


Review URL: http://codereview.chromium.org/8205015

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104596 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
saintlou@chromium.org
2011-10-07 23:10:00 +00:00
parent 7e6ff7cc1c
commit a1b7a0fdd7
2 changed files with 3 additions and 1 deletions

@ -8,7 +8,7 @@
namespace printing {
#if defined(OS_POSIX)
#if defined(OS_POSIX) && !defined(OS_CHROMEOS)
void PrintedDocument::RenderPrintedPage(const PrintedPage& page,
PrintingContext* context) const {
// TODO(saintlou): This a stub to allow us to build under Aura.

@ -8,6 +8,7 @@
namespace printing {
#if !defined(OS_CHROMEOS)
// static
PrintingContext* PrintingContext::Create(const std::string& app_locale) {
// TODO(saintlou): This a stub to allow us to build under Aura.
@ -15,5 +16,6 @@ PrintingContext* PrintingContext::Create(const std::string& app_locale) {
NOTIMPLEMENTED();
return NULL;
}
#endif
} // namespace printing