| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |