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

Unified Diff: chrome/browser/printing/print_view_manager_basic.cc

Issue 22577010: Printing: Add a basic printing mode without print preview and cloud print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 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
Index: chrome/browser/printing/print_view_manager_basic.cc
diff --git a/chrome/browser/printing/print_view_manager_basic.cc b/chrome/browser/printing/print_view_manager_basic.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6f524d173596597191f26eaa8292b86f3c3dee6f
--- /dev/null
+++ b/chrome/browser/printing/print_view_manager_basic.cc
@@ -0,0 +1,18 @@
+// Copyright (c) 2013 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 "chrome/browser/printing/print_view_manager_basic.h"
+
+DEFINE_WEB_CONTENTS_USER_DATA_KEY(printing::PrintViewManagerBasic);
+
+namespace printing {
+
+PrintViewManagerBasic::PrintViewManagerBasic(content::WebContents* web_contents)
+ : PrintViewManagerBase(web_contents) {
+}
+
+PrintViewManagerBasic::~PrintViewManagerBasic() {
+}
+
+} // namespace printing
« no previous file with comments | « chrome/browser/printing/print_view_manager_basic.h ('k') | chrome/browser/printing/printing_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698