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

Side by Side Diff: chrome/browser/spellchecker/feedback_sender.h

Issue 1665023002: Cheer up spell-checking code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reverted one auto Created 4 years, 10 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 unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698