Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(922)

Unified Diff: chrome/browser/spellchecker/feedback.h

Issue 15318004: Store feedback for spellcheck results from spelling service (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix mac unit test compile Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/spellchecker/feedback.cc » ('j') | chrome/browser/spellchecker/feedback.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « no previous file | chrome/browser/spellchecker/feedback.cc » ('j') | chrome/browser/spellchecker/feedback.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698