Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
|
groby-ooo-7-16
2016/02/09 20:20:26
From the style guide: "we don't bother updating ol
Kevin Bailey
2016/02/09 22:26:39
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // An object to record and send user feedback to spelling service. The spelling | 5 // An object to record and send user feedback to spelling service. The spelling |
| 6 // service uses the feedback to improve its suggestions. | 6 // service uses the feedback to improve its suggestions. |
| 7 // | 7 // |
| 8 // Assigns uint32_t hash identifiers to spelling suggestions from spelling | 8 // Assigns uint32_t hash identifiers to spelling suggestions from spelling |
| 9 // service and stores these suggestions. Records user's actions on these | 9 // service and stores these suggestions. Records user's actions on these |
| 10 // suggestions. Periodically sends batches of user feedback to the spelling | 10 // suggestions. Periodically sends batches of user feedback to the spelling |
| 11 // service. | 11 // service. |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 173 // If a sender is destroyed before it finishes, then sending feedback will be | 173 // If a sender is destroyed before it finishes, then sending feedback will be |
| 174 // canceled. | 174 // canceled. |
| 175 ScopedVector<net::URLFetcher> senders_; | 175 ScopedVector<net::URLFetcher> senders_; |
| 176 | 176 |
| 177 DISALLOW_COPY_AND_ASSIGN(FeedbackSender); | 177 DISALLOW_COPY_AND_ASSIGN(FeedbackSender); |
| 178 }; | 178 }; |
| 179 | 179 |
| 180 } // namespace spellcheck | 180 } // namespace spellcheck |
| 181 | 181 |
| 182 #endif // CHROME_BROWSER_SPELLCHECKER_FEEDBACK_SENDER_H_ | 182 #endif // CHROME_BROWSER_SPELLCHECKER_FEEDBACK_SENDER_H_ |
| OLD | NEW |