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

Side by Side Diff: chrome/browser/printing/print_view_manager_linux.cc

Issue 593037: Remove the temporary scaffolding stubs. (Closed)
Patch Set: fixes Created 10 years, 10 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 unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « chrome/browser/printing/print_job_manager_linux.cc ('k') | chrome/browser/printing/printer_query_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698