Rename vector icon header files.
[chromium-blink-merge.git] / chrome / browser / spellchecker / word_trimmer.h
blob5b108d3cc154d3bbe98ae82baf5e9c0921691fa2
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_SPELLCHECKER_WORD_TRIMMER_H_
6 #define CHROME_BROWSER_SPELLCHECKER_WORD_TRIMMER_H_
8 #include "base/strings/string16.h"
10 // Trims |text| to contain only the range from |start| to |end| and |keep| words
11 // on either side of the range. The |start| and |end| parameters are character
12 // indexes into |text|. The |keep| parameter is the number of words to keep on
13 // either side of the |start|-|end| range. The function updates |start| in
14 // accordance with the trimming.
16 // Example:
18 // size_t start = 14;
19 // size_t end = 23;
20 // base::string16 text =
21 // base::ASCIIToUTF16("one two three four five six seven eight");
22 // int keep = 2;
23 // base::string16 trimmed = TrimWords(&start, end, text, keep);
24 // DCHECK(trimmed == base::ASCIIToUTF16("two three four five six seven"));
25 // DCHECK(start == 10);
27 base::string16 TrimWords(size_t* start,
28 size_t end,
29 const base::string16& text,
30 size_t keep);
32 #endif // CHROME_BROWSER_SPELLCHECKER_WORD_TRIMMER_H_