| Index: webkit/support/test_webkit_platform_support.cc
|
| diff --git a/webkit/support/test_webkit_platform_support.cc b/webkit/support/test_webkit_platform_support.cc
|
| index 8b3c5d2812f287490bef24025442d651a56fff56..39ce9c94fde82e9386fde80f041843c0d14c5bd6 100644
|
| --- a/webkit/support/test_webkit_platform_support.cc
|
| +++ b/webkit/support/test_webkit_platform_support.cc
|
| @@ -114,18 +114,6 @@ TestWebKitPlatformSupport::TestWebKitPlatformSupport() {
|
| DCHECK(file_system_root_.path().empty());
|
| }
|
|
|
| - {
|
| - // Initialize the hyphen library with a sample dictionary.
|
| - base::FilePath path;
|
| - PathService::Get(base::DIR_SOURCE_ROOT, &path);
|
| - path = path.Append(FILE_PATH_LITERAL("third_party/hyphen/hyph_en_US.dic"));
|
| - base::PlatformFile dict_file = base::CreatePlatformFile(
|
| - path,
|
| - base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ,
|
| - NULL, NULL);
|
| - hyphenator_.LoadDictionary(dict_file);
|
| - }
|
| -
|
| #if defined(OS_WIN)
|
| // Ensure we pick up the default theme engine.
|
| SetThemeEngine(NULL);
|
| @@ -164,10 +152,6 @@ WebKit::WebBlobRegistry* TestWebKitPlatformSupport::blobRegistry() {
|
| return blob_registry_.get();
|
| }
|
|
|
| -WebKit::WebHyphenator* TestWebKitPlatformSupport::hyphenator() {
|
| - return &hyphenator_;
|
| -}
|
| -
|
| WebKit::WebIDBFactory* TestWebKitPlatformSupport::idbFactory() {
|
| NOTREACHED() <<
|
| "IndexedDB cannot be tested with in-process harnesses.";
|
|
|