Index: chrome/browser/ui/webui/print_preview/print_preview_handler.h |
diff --git a/chrome/browser/ui/webui/print_preview/print_preview_handler.h b/chrome/browser/ui/webui/print_preview/print_preview_handler.h |
index 8cee113c8d5ebff9e0c71274c87f41fda1d2f464..a6c69fa70dd8bd4f9caa14d27c23bd0618cb827c 100644 |
--- a/chrome/browser/ui/webui/print_preview/print_preview_handler.h |
+++ b/chrome/browser/ui/webui/print_preview/print_preview_handler.h |
@@ -320,10 +320,14 @@ class PrintPreviewHandler |
void EnsureExtensionPrinterHandlerSet(); |
// Called when a list of printers is reported by an extension. |
+ // |callback_id|: The javascript callback to call if all extension printers |
+ // are loaded (when |done| = true) |
// |printers|: The list of printers managed by the extension. |
// |done|: Whether all the extensions have reported the list of printers |
// they manage. |
- void OnGotPrintersForExtension(const base::ListValue& printers, bool done); |
+ void OnGotPrintersForExtension(const std::string& callback_id, |
+ const base::ListValue& printers, |
+ bool done); |
// Called when an extension reports information requested for a provisional |
// printer. |