| Index: chrome/browser/tab_contents/tab_contents.cc
|
| ===================================================================
|
| --- chrome/browser/tab_contents/tab_contents.cc (revision 18804)
|
| +++ chrome/browser/tab_contents/tab_contents.cc (working copy)
|
| @@ -122,10 +122,6 @@
|
| const char kLinkDoctorBaseURL[] =
|
| "http://linkhelp.clients.google.com/tbproxy/lh/fixurl";
|
|
|
| -// The printer icon in shell32.dll. That's a standard icon user will quickly
|
| -// recognize.
|
| -const int kShell32PrinterIcon = 17;
|
| -
|
| // The list of prefs we want to observe.
|
| const wchar_t* kPrefsToObserve[] = {
|
| prefs::kAlternateErrorPagesEnabled,
|
| @@ -1033,6 +1029,10 @@
|
| return render_view_host()->PrintPages();
|
| }
|
|
|
| +void TabContents::PrintingDone(int document_cookie, bool success) {
|
| + render_view_host()->PrintingDone(document_cookie, success);
|
| +}
|
| +
|
| bool TabContents::IsActiveEntry(int32 page_id) {
|
| NavigationEntry* active_entry = controller_.GetActiveEntry();
|
| return (active_entry != NULL &&
|
|
|