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:
@ -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
|
||||
|
Reference in New Issue
Block a user