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

Unified Diff: ui/app_list/search/tokenized_string_match.h

Issue 645853013: Remove some platform specific stuff from views. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 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: ui/app_list/search/tokenized_string_match.h
diff --git a/ui/app_list/search/tokenized_string_match.h b/ui/app_list/search/tokenized_string_match.h
deleted file mode 100644
index e00425a6e1d211540fe9b3036f2659838b497587..0000000000000000000000000000000000000000
--- a/ui/app_list/search/tokenized_string_match.h
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef UI_APP_LIST_SEARCH_TOKENIZED_STRING_MATCH_H_
-#define UI_APP_LIST_SEARCH_TOKENIZED_STRING_MATCH_H_
-
-#include <vector>
-
-#include "base/basictypes.h"
-#include "base/strings/string16.h"
-#include "ui/app_list/app_list_export.h"
-#include "ui/gfx/range/range.h"
-
-namespace app_list {
-
-class TokenizedString;
-
-// TokenizedStringMatch takes two tokenized strings: one as the text and
-// the other one as the query. It matches the query against the text,
-// calculates a relevance score between [0, 1] and marks the matched portions
-// of text. A relevance of zero means the two are completely different to each
-// other. The higher the relevance score, the better the two strings are
-// matched. Matched portions of text are stored as index ranges.
-class APP_LIST_EXPORT TokenizedStringMatch {
- public:
- typedef std::vector<gfx::Range> Hits;
-
- TokenizedStringMatch();
- ~TokenizedStringMatch();
-
- // Calculates the relevance and hits. Returns true if the two strings are
- // somewhat matched, i.e. relevance score is not zero.
- bool Calculate(const TokenizedString& query, const TokenizedString& text);
-
- // Convenience wrapper to calculate match from raw string input.
- bool Calculate(const base::string16& query, const base::string16& text);
-
- double relevance() const { return relevance_; }
- const Hits& hits() const { return hits_; }
-
- private:
- // Score in range of [0,1] representing how well the query matches the text.
- double relevance_;
-
- // Char index ranges in |text| of where matches are found.
- Hits hits_;
-
- DISALLOW_COPY_AND_ASSIGN(TokenizedStringMatch);
-};
-
-} // namespace app_list
-
-#endif // UI_APP_LIST_SEARCH_TOKENIZED_STRING_MATCH_H_
« no previous file with comments | « ui/app_list/search/tokenized_string_char_iterator_unittest.cc ('k') | ui/app_list/search/tokenized_string_match.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698