- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / android / testshell / testshell_stubs.cc
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/strings/string16.h"
6 #include "printing/printing_context.h"
7 #include "printing/printing_context_android.h"
8
9 // This file contains temporary stubs to allow the libtestshell target to
10 // compile. They will be removed once real implementations are
11 // written/upstreamed, or once other code is refactored to eliminate the
12 // need for them.
13
14 // static
15 printing::PrintingContext* printing::PrintingContext::Create(
16     const std::string& app_locale) {
17   return NULL;
18 }
19
20 // static
21 void printing::PrintingContextAndroid::PdfWritingDone(int fd, bool success) {
22 }
23