OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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/printing/print_view_manager.h" |
| 6 |
| 7 #include <string> |
| 8 |
| 9 #include "base/logging.h" |
| 10 #include "googleurl/src/gurl.h" |
| 11 #include "chrome/browser/printing/print_job.h" |
| 12 #include "chrome/common/notification_type.h" |
| 13 |
| 14 namespace printing { |
| 15 |
| 16 PrintViewManager::PrintViewManager(TabContents& owner) : owner_(owner) { |
| 17 NOTIMPLEMENTED(); |
| 18 } |
| 19 |
| 20 PrintViewManager::~PrintViewManager() { |
| 21 NOTIMPLEMENTED(); |
| 22 } |
| 23 |
| 24 void PrintViewManager::Stop() { |
| 25 NOTIMPLEMENTED(); |
| 26 } |
| 27 |
| 28 bool PrintViewManager::OnRenderViewGone(RenderViewHost* render_view_host) { |
| 29 NOTIMPLEMENTED(); |
| 30 return true; |
| 31 } |
| 32 |
| 33 std::wstring PrintViewManager::RenderSourceName() { |
| 34 NOTIMPLEMENTED(); |
| 35 return std::wstring(); |
| 36 } |
| 37 |
| 38 GURL PrintViewManager::RenderSourceUrl() { |
| 39 NOTIMPLEMENTED(); |
| 40 return GURL(); |
| 41 } |
| 42 |
| 43 void PrintViewManager::DidGetPrintedPagesCount(int cookie, int number_pages) { |
| 44 NOTIMPLEMENTED(); |
| 45 } |
| 46 |
| 47 void PrintViewManager::DidPrintPage( |
| 48 const ViewHostMsg_DidPrintPage_Params& params) { |
| 49 NOTIMPLEMENTED(); |
| 50 } |
| 51 |
| 52 void PrintViewManager::Observe(NotificationType type, |
| 53 const NotificationSource& source, |
| 54 const NotificationDetails& details) { |
| 55 NOTIMPLEMENTED(); |
| 56 } |
| 57 |
| 58 } // namespace printing |
OLD | NEW |