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

Side by Side Diff: chrome/renderer/spellchecker/spellcheck_unittest.cc

Issue 630603003: Replacing the OVERRIDE with override in chrome/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
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 #include "base/files/file_util.h" 5 #include "base/files/file_util.h"
6 #include "base/message_loop/message_loop.h" 6 #include "base/message_loop/message_loop.h"
7 #include "base/path_service.h" 7 #include "base/path_service.h"
8 #include "base/strings/sys_string_conversions.h" 8 #include "base/strings/sys_string_conversions.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "chrome/common/chrome_paths.h" 10 #include "chrome/common/chrome_paths.h"
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 106
107 // A fake completion object for verification. 107 // A fake completion object for verification.
108 class MockTextCheckingCompletion : public blink::WebTextCheckingCompletion { 108 class MockTextCheckingCompletion : public blink::WebTextCheckingCompletion {
109 public: 109 public:
110 MockTextCheckingCompletion() 110 MockTextCheckingCompletion()
111 : completion_count_(0) { 111 : completion_count_(0) {
112 } 112 }
113 113
114 virtual void didFinishCheckingText( 114 virtual void didFinishCheckingText(
115 const blink::WebVector<blink::WebTextCheckingResult>& results) 115 const blink::WebVector<blink::WebTextCheckingResult>& results)
116 OVERRIDE { 116 override {
117 completion_count_++; 117 completion_count_++;
118 last_results_ = results; 118 last_results_ = results;
119 } 119 }
120 120
121 virtual void didCancelCheckingText() OVERRIDE { 121 virtual void didCancelCheckingText() override {
122 completion_count_++; 122 completion_count_++;
123 } 123 }
124 124
125 size_t completion_count_; 125 size_t completion_count_;
126 blink::WebVector<blink::WebTextCheckingResult> last_results_; 126 blink::WebVector<blink::WebTextCheckingResult> last_results_;
127 }; 127 };
128 128
129 // Operates unit tests for the content::SpellCheck::SpellCheckWord() function 129 // Operates unit tests for the content::SpellCheck::SpellCheckWord() function
130 // with the US English dictionary. 130 // with the US English dictionary.
131 // The unit tests in this function consist of: 131 // The unit tests in this function consist of:
(...skipping 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after
1365 strlen(kTestCases[i].misspelled), 1365 strlen(kTestCases[i].misspelled),
1366 0, 1366 0,
1367 &misspelling_start, 1367 &misspelling_start,
1368 &misspelling_length, 1368 &misspelling_length,
1369 &suggestions)); 1369 &suggestions));
1370 EXPECT_GE(suggestions.size(), static_cast<size_t>(1)); 1370 EXPECT_GE(suggestions.size(), static_cast<size_t>(1));
1371 if (suggestions.size() > 0) 1371 if (suggestions.size() > 0)
1372 EXPECT_EQ(suggestions[0], base::ASCIIToUTF16(kTestCases[i].suggestion)); 1372 EXPECT_EQ(suggestions[0], base::ASCIIToUTF16(kTestCases[i].suggestion));
1373 } 1373 }
1374 } 1374 }
OLDNEW
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck_provider_test.h ('k') | chrome/renderer/translate/translate_helper_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698