| Index: content/renderer/renderer_webkitplatformsupport_impl.h
|
| diff --git a/content/renderer/renderer_webkitplatformsupport_impl.h b/content/renderer/renderer_webkitplatformsupport_impl.h
|
| index d3c415f0042fc29e63e93d2b13f39ff1ec26be9f..2bfef450ce2c7a3a0a45253a3ce1d8a2e6f19a43 100644
|
| --- a/content/renderer/renderer_webkitplatformsupport_impl.h
|
| +++ b/content/renderer/renderer_webkitplatformsupport_impl.h
|
| @@ -20,7 +20,6 @@ class WebClipboardImpl;
|
|
|
| namespace content {
|
| class GamepadSharedMemoryReader;
|
| -class Hyphenator;
|
| class RendererClipboardClient;
|
| class WebFileSystemImpl;
|
| class WebSharedWorkerRepositoryImpl;
|
| @@ -40,6 +39,7 @@ class CONTENT_EXPORT RendererWebKitPlatformSupportImpl
|
| virtual WebKit::WebFileUtilities* fileUtilities();
|
| virtual WebKit::WebSandboxSupport* sandboxSupport();
|
| virtual WebKit::WebCookieJar* cookieJar();
|
| + virtual WebKit::WebHyphenator* hyphenator();
|
| virtual bool sandboxEnabled();
|
| virtual unsigned long long visitedLinkHash(
|
| const char* canonicalURL, size_t length);
|
| @@ -135,6 +135,9 @@ class CONTENT_EXPORT RendererWebKitPlatformSupportImpl
|
| class SandboxSupport;
|
| scoped_ptr<SandboxSupport> sandbox_support_;
|
|
|
| + class Hyphenator;
|
| + scoped_ptr<Hyphenator> hyphenator_;
|
| +
|
| // This counter keeps track of the number of times sudden termination is
|
| // enabled or disabled. It starts at 0 (enabled) and for every disable
|
| // increments by 1, for every enable decrements by 1. When it reaches 0,
|
| @@ -155,8 +158,6 @@ class CONTENT_EXPORT RendererWebKitPlatformSupportImpl
|
| scoped_ptr<WebKit::WebBlobRegistry> blob_registry_;
|
|
|
| scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_;
|
| -
|
| - scoped_ptr<content::Hyphenator> hyphenator_;
|
| };
|
|
|
| } // namespace content
|
|
|