diff options
author | saintlou@chromium.org <saintlou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-06 04:32:56 +0000 |
---|---|---|
committer | saintlou@chromium.org <saintlou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-06 04:32:56 +0000 |
commit | 8ad5f1d684fa801c35c7227e84b256056cc2e558 (patch) | |
tree | 25e69e6e2568b329022981300b791e2cd359b487 /printing/printing_context_aura.cc | |
parent | 322449a2a3f9d15d9c306351c7026e140c58f183 (diff) | |
download | chromium_src-8ad5f1d684fa801c35c7227e84b256056cc2e558.zip chromium_src-8ad5f1d684fa801c35c7227e84b256056cc2e558.tar.gz chromium_src-8ad5f1d684fa801c35c7227e84b256056cc2e558.tar.bz2 |
We will need to support printing under Aura + ChromeOS (and we will have to remove Gtk too).
BUG=97131
TEST=none
Review URL: http://codereview.chromium.org/8165004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104244 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/printing_context_aura.cc')
-rw-r--r-- | printing/printing_context_aura.cc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/printing/printing_context_aura.cc b/printing/printing_context_aura.cc new file mode 100644 index 0000000..48c958b --- /dev/null +++ b/printing/printing_context_aura.cc @@ -0,0 +1,19 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "printing/printing_context.h" + +#include "base/logging.h" + +namespace printing { + +// static +PrintingContext* PrintingContext::Create(const std::string& app_locale) { + // TODO(saintlou): This a stub to allow us to build under Aura. + // See issue: http://crbug.com/99282 + NOTIMPLEMENTED(); + return NULL; +} + +} // namespace printing |