| Index: chrome/browser/printing/print_view_manager_base.h | 
| diff --git a/chrome/browser/printing/print_view_manager_base.h b/chrome/browser/printing/print_view_manager_base.h | 
| index 03a90c61269fa3b78762330bbab9aa36acfeddfb..4655d3556f66b0729afd1bfcd5b99cbb8174930f 100644 | 
| --- a/chrome/browser/printing/print_view_manager_base.h | 
| +++ b/chrome/browser/printing/print_view_manager_base.h | 
| @@ -1,4 +1,4 @@ | 
| -// Copyright (c) 2013 The Chromium Authors. All rights reserved. | 
| +// Copyright 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. | 
|  | 
| @@ -56,6 +56,9 @@ class PrintViewManagerBase : public content::NotificationObserver, | 
| // content::WebContentsObserver implementation. | 
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; | 
|  | 
| +  // IPC Message handlers. | 
| +  virtual void OnPrintingFailed(int cookie); | 
| + | 
| private: | 
| // content::NotificationObserver implementation. | 
| virtual void Observe(int type, | 
| @@ -73,7 +76,6 @@ class PrintViewManagerBase : public content::NotificationObserver, | 
| void OnDidGetPrintedPagesCount(int cookie, int number_pages); | 
| void OnDidGetDocumentCookie(int cookie); | 
| void OnDidPrintPage(const PrintHostMsg_DidPrintPage_Params& params); | 
| -  void OnPrintingFailed(int cookie); | 
|  | 
| // Processes a NOTIFY_PRINT_JOB_EVENT notification. | 
| void OnNotifyPrintJobEvent(const JobEventDetails& event_details); | 
|  |