| Index: webkit/glue/webframe_impl.cc
|
| ===================================================================
|
| --- webkit/glue/webframe_impl.cc (revision 6726)
|
| +++ webkit/glue/webframe_impl.cc (working copy)
|
| @@ -1321,6 +1321,14 @@
|
| frame()->document(), fragment.get(), false, true, true));
|
| }
|
|
|
| +void WebFrameImpl::ToggleSpellCheck() {
|
| + frame()->editor()->toggleContinuousSpellChecking();
|
| +}
|
| +
|
| +bool WebFrameImpl::SpellCheckEnabled() {
|
| + return frame()->editor()->isContinuousSpellCheckingEnabled();
|
| +}
|
| +
|
| void WebFrameImpl::Delete() {
|
| frame()->editor()->command("Delete").execute();
|
|
|
|
|