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

Unified Diff: chrome/browser/history/in_memory_url_index.h

Issue 3859003: FBTF: Even more ctor/virtual deinlining. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Created 10 years, 2 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
Index: chrome/browser/history/in_memory_url_index.h
diff --git a/chrome/browser/history/in_memory_url_index.h b/chrome/browser/history/in_memory_url_index.h
index 8008a74fb8d3965c422c4397d5fab1c133901001..6993e0decb72c8920c74143e29338d68b245ccab 100644
--- a/chrome/browser/history/in_memory_url_index.h
+++ b/chrome/browser/history/in_memory_url_index.h
@@ -120,18 +120,7 @@ class InMemoryURLIndex {
// Support caching of term character intersections so that we can optimize
// searches which build upon a previous search.
- struct TermCharWordSet {
- TermCharWordSet(Char16Set char_set, WordIDSet word_id_set, bool used)
- : char_set_(char_set),
- word_id_set_(word_id_set),
- used_(used) {}
-
- bool IsNotUsed() const { return !used_; }
-
- Char16Set char_set_;
- WordIDSet word_id_set_;
- bool used_; // true if this set has been used for the current term search.
- };
+ struct TermCharWordSet;
typedef std::vector<TermCharWordSet> TermCharWordSetVector;
// TODO(rohitrao): Probably replace this with QueryResults.

Powered by Google App Engine
This is Rietveld 408576698