Index: chrome/browser/printing/print_job_manager.h |
diff --git a/chrome/browser/printing/print_job_manager.h b/chrome/browser/printing/print_job_manager.h |
index f25764e44d5a7b22f1b39057d8d246d5becaaecb..749c29b49d6db2dfba9da2c6ea1ba70fdf570a3a 100644 |
--- a/chrome/browser/printing/print_job_manager.h |
+++ b/chrome/browser/printing/print_job_manager.h |
@@ -5,6 +5,7 @@ |
#ifndef CHROME_BROWSER_PRINTING_PRINT_JOB_MANAGER_H_ |
#define CHROME_BROWSER_PRINTING_PRINT_JOB_MANAGER_H_ |
+#include <set> |
#include <vector> |
#include "base/memory/ref_counted.h" |
@@ -52,7 +53,7 @@ class PrintJobManager : public content::NotificationObserver { |
PrintDestinationInterface* destination() const { return destination_.get(); } |
private: |
- typedef std::vector<scoped_refptr<PrintJob> > PrintJobs; |
+ typedef std::set<scoped_refptr<PrintJob> > PrintJobs; |
typedef std::vector<scoped_refptr<PrinterQuery> > PrinterQueries; |
// Processes a NOTIFY_PRINT_JOB_EVENT notification. |