Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(248)

Side by Side Diff: chrome/browser/local_discovery/pwg_raster_converter.cc

Issue 73503002: Move PDF to PWG conversion into PrivetLocalPrintOperationImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 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 "chrome/browser/local_discovery/pwg_raster_converter.h"
6
7 namespace local_discovery {
8
9 class PWGRasterConverterImpl : public PWGRasterConverter {
10 public:
11 PWGRasterConverterImpl();
12
13 virtual ~PWGRasterConverterImpl();
14
15 virtual void Start(base::RefCountedBytes* data,
16 const ResultCallback& callback) OVERRIDE;
17 };
18
19 // static
20 scoped_ptr<PWGRasterConverter> PWGRasterConverter::CreateDefault() {
21 return scoped_ptr<PWGRasterConverter>(new PWGRasterConverterImpl());
22 }
23
24 PWGRasterConverterImpl::PWGRasterConverterImpl() {
25 }
26
27 PWGRasterConverterImpl::~PWGRasterConverterImpl() {
28 }
29
30 void PWGRasterConverterImpl::Start(base::RefCountedBytes* data,
31 const ResultCallback& callback) {
32 NOTIMPLEMENTED();
33 }
34
35 } // namespace local_discovery
OLDNEW
« no previous file with comments | « chrome/browser/local_discovery/pwg_raster_converter.h ('k') | chrome/browser/ui/webui/print_preview/print_preview_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698