| Index: webkit/glue/webview_impl.cc
|
| ===================================================================
|
| --- webkit/glue/webview_impl.cc (revision 27906)
|
| +++ webkit/glue/webview_impl.cc (working copy)
|
| @@ -1605,20 +1605,20 @@
|
| }
|
| }
|
|
|
| -// WebView --------------------------------------------------------------------
|
| -
|
| -WebViewDelegate* WebViewImpl::GetDelegate() {
|
| - return delegate_;
|
| -}
|
| -
|
| -const std::wstring& WebViewImpl::GetInspectorSettings() const {
|
| +WebString WebViewImpl::inspectorSettings() const {
|
| return inspector_settings_;
|
| }
|
|
|
| -void WebViewImpl::SetInspectorSettings(const std::wstring& settings) {
|
| +void WebViewImpl::setInspectorSettings(const WebString& settings) {
|
| inspector_settings_ = settings;
|
| }
|
|
|
| +// WebView --------------------------------------------------------------------
|
| +
|
| +WebViewDelegate* WebViewImpl::GetDelegate() {
|
| + return delegate_;
|
| +}
|
| +
|
| bool WebViewImpl::setDropEffect(bool accept) {
|
| if (drag_target_dispatch_) {
|
| drop_effect_ = accept ? DROP_EFFECT_COPY : DROP_EFFECT_NONE;
|
| @@ -1895,14 +1895,6 @@
|
| hitTestResultAtPoint(doc_point, false);
|
| }
|
|
|
| -void WebViewImpl::SetSpellingPanelVisibility(bool is_visible) {
|
| - spelling_panel_is_visible_ = is_visible;
|
| -}
|
| -
|
| -bool WebViewImpl::GetSpellingPanelVisibility() {
|
| - return spelling_panel_is_visible_;
|
| -}
|
| -
|
| void WebViewImpl::setTabsToLinks(bool enable) {
|
| tabs_to_links_ = enable;
|
| }
|
|
|