| Index: content/renderer/renderer_webkitplatformsupport_impl.h
|
| ===================================================================
|
| --- content/renderer/renderer_webkitplatformsupport_impl.h (revision 152650)
|
| +++ content/renderer/renderer_webkitplatformsupport_impl.h (working copy)
|
| @@ -18,6 +18,7 @@
|
|
|
| namespace content {
|
| class GamepadSharedMemoryReader;
|
| +class Hyphenator;
|
| }
|
|
|
| namespace webkit_glue {
|
| @@ -92,6 +93,11 @@
|
| WebKit::WebPeerConnection00HandlerClient* client) OVERRIDE;
|
| virtual WebKit::WebMediaStreamCenter* createMediaStreamCenter(
|
| WebKit::WebMediaStreamCenterClient* client) OVERRIDE;
|
| + virtual bool canHyphenate(const WebKit::WebString& locale) OVERRIDE;
|
| + virtual size_t computeLastHyphenLocation(const char16* characters,
|
| + size_t length,
|
| + size_t before_index,
|
| + const WebKit::WebString& locale) OVERRIDE;
|
|
|
| // Disables the WebSandboxSupport implementation for testing.
|
| // Tests that do not set up a full sandbox environment should call
|
| @@ -140,6 +146,8 @@
|
| scoped_ptr<WebKit::WebBlobRegistry> blob_registry_;
|
|
|
| scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_;
|
| +
|
| + scoped_ptr<content::Hyphenator> hyphenator_;
|
| };
|
|
|
| #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_
|
|
|