| Index: chrome/browser/spellchecker/feedback.h
|
| diff --git a/chrome/browser/spellchecker/feedback.h b/chrome/browser/spellchecker/feedback.h
|
| index 0949002dc87603a377ed82dba2a7000d06d6a1c8..ebfff392c2b48b32d38e44164587a0223ea4a985 100644
|
| --- a/chrome/browser/spellchecker/feedback.h
|
| +++ b/chrome/browser/spellchecker/feedback.h
|
| @@ -6,6 +6,7 @@
|
| #define CHROME_BROWSER_SPELLCHECKER_FEEDBACK_H_
|
|
|
| #include <map>
|
| +#include <set>
|
| #include <vector>
|
|
|
| #include "chrome/browser/spellchecker/misspelling.h"
|
| @@ -72,7 +73,7 @@ class Feedback {
|
| std::map<uint32, Misspelling> misspellings_;
|
|
|
| // A map of renderer process ID to hashes that identify misspellings.
|
| - std::map<int, std::vector<uint32> > hashes_;
|
| + std::map<int, std::set<uint32> > hashes_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(Feedback);
|
| };
|
|
|