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

Side by Side Diff: content/shell/renderer/test_runner/MockSpellCheck.cpp

Issue 221763002: Revert of Fix typo in MockSpellCheck::misspelledWords (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "content/shell/renderer/test_runner/MockSpellCheck.h" 5 #include "content/shell/renderer/test_runner/MockSpellCheck.h"
6 6
7 #include "content/shell/renderer/test_runner/TestCommon.h" 7 #include "content/shell/renderer/test_runner/TestCommon.h"
8 #include "third_party/WebKit/public/platform/WebCString.h" 8 #include "third_party/WebKit/public/platform/WebCString.h"
9 9
10 using namespace blink; 10 using namespace blink;
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 "foo", 140 "foo",
141 "Foo", 141 "Foo",
142 "baz", 142 "baz",
143 "fo", 143 "fo",
144 "LibertyF", 144 "LibertyF",
145 "chello", 145 "chello",
146 "xxxtestxxx", 146 "xxxtestxxx",
147 "XXxxx", 147 "XXxxx",
148 "Textx", 148 "Textx",
149 "blockquoted", 149 "blockquoted",
150 "asdf", 150 "asd",
151 "Lorem", 151 "Lorem",
152 "Nunc", 152 "Nunc",
153 "Curabitur", 153 "Curabitur",
154 "eu", 154 "eu",
155 "adlj", 155 "adlj",
156 "adaasj", 156 "adaasj",
157 "sdklj", 157 "sdklj",
158 "jlkds", 158 "jlkds",
159 "jsaada", 159 "jsaada",
160 "jlda", 160 "jlda",
(...skipping 14 matching lines...) Expand all
175 // Mark as initialized to prevent this object from being initialized twice 175 // Mark as initialized to prevent this object from being initialized twice
176 // or more. 176 // or more.
177 m_initialized = true; 177 m_initialized = true;
178 178
179 // Since this MockSpellCheck class doesn't download dictionaries, this 179 // Since this MockSpellCheck class doesn't download dictionaries, this
180 // function always returns false. 180 // function always returns false.
181 return false; 181 return false;
182 } 182 }
183 183
184 } 184 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698