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

Unified Diff: printing/print_destination_interface.h

Issue 524543002: Removed IDC_PRINT_TO_DESTINATION. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fri Aug 29 14:26:26 PDT 2014 Created 6 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « printing/BUILD.gn ('k') | printing/print_destination_none.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/print_destination_interface.h
diff --git a/printing/print_destination_interface.h b/printing/print_destination_interface.h
deleted file mode 100644
index 715f529d026f753214a938e74682fb57147dbc61..0000000000000000000000000000000000000000
--- a/printing/print_destination_interface.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef PRINTING_PRINT_DESTINATION_INTERFACE_H_
-#define PRINTING_PRINT_DESTINATION_INTERFACE_H_
-
-#include "base/memory/ref_counted.h"
-#include "printing/printing_export.h"
-
-namespace printing {
-
-class PrintDestinationInterface
- : public base::RefCountedThreadSafe<PrintDestinationInterface> {
- public:
- // Sets the number of pages to print as soon as it is known.
- virtual void SetPageCount(int page_count) = 0;
-
- // Sets the metafile bits for a given page as soon as it is ready.
- virtual void SetPageContent(int page_number,
- void* content,
- size_t content_size) = 0;
- protected:
- friend class base::RefCountedThreadSafe<PrintDestinationInterface>;
- virtual ~PrintDestinationInterface() {}
-};
-
-PRINTING_EXPORT PrintDestinationInterface* CreatePrintDestination();
-
-} // namespace printing
-
-#endif // PRINTING_PRINT_DESTINATION_INTERFACE_H_
« no previous file with comments | « printing/BUILD.gn ('k') | printing/print_destination_none.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698