diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-20 16:15:12 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-20 16:15:12 +0000 |
commit | 8dcfd8c9bd0ce2a0b98d53b2bfc0c826ef388fe8 (patch) | |
tree | f3375616eaf55ec16d512241f05bc394697e3dec /webkit/glue | |
parent | e2dd9dda0c2897d9fa0630584b25d81ed2c1c068 (diff) | |
download | chromium_src-8dcfd8c9bd0ce2a0b98d53b2bfc0c826ef388fe8.zip chromium_src-8dcfd8c9bd0ce2a0b98d53b2bfc0c826ef388fe8.tar.gz chromium_src-8dcfd8c9bd0ce2a0b98d53b2bfc0c826ef388fe8.tar.bz2 |
Remove unused 'node' parameter from ImeUpdateStatus.
R=hbono
Review URL: http://codereview.chromium.org/21531
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10096 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r-- | webkit/glue/webview_impl.cc | 1 | ||||
-rw-r--r-- | webkit/glue/webview_impl.h | 1 | ||||
-rw-r--r-- | webkit/glue/webwidget.h | 3 | ||||
-rw-r--r-- | webkit/glue/webwidget_impl.cc | 1 | ||||
-rw-r--r-- | webkit/glue/webwidget_impl.h | 1 |
5 files changed, 1 insertions, 6 deletions
diff --git a/webkit/glue/webview_impl.cc b/webkit/glue/webview_impl.cc index 77d5442..2705168 100644 --- a/webkit/glue/webview_impl.cc +++ b/webkit/glue/webview_impl.cc @@ -1177,7 +1177,6 @@ bool WebViewImpl::ImeSetComposition(int string_type, } bool WebViewImpl::ImeUpdateStatus(bool* enable_ime, - const void** new_node, gfx::Rect* caret_rect) { // Store whether the selected node needs IME and the caret rectangle. // This process consists of the following four steps: diff --git a/webkit/glue/webview_impl.h b/webkit/glue/webview_impl.h index c511e7b..f86e9f1 100644 --- a/webkit/glue/webview_impl.h +++ b/webkit/glue/webview_impl.h @@ -72,7 +72,6 @@ class WebViewImpl : public WebView, public base::RefCounted<WebViewImpl> { int target_end, const std::wstring& ime_string); virtual bool ImeUpdateStatus(bool* enable_ime, - const void** node, gfx::Rect* caret_rect); virtual void StopLoading(); virtual void SetBackForwardListSize(int size); diff --git a/webkit/glue/webwidget.h b/webkit/glue/webwidget.h index 0fda0dc..08cab6b 100644 --- a/webkit/glue/webwidget.h +++ b/webkit/glue/webwidget.h @@ -63,8 +63,7 @@ class WebWidget { const std::wstring& ime_string) = 0; // Retrieve the status of this widget required by IME APIs. - virtual bool ImeUpdateStatus(bool* enable_ime, const void** node, - gfx::Rect* caret_rect) = 0; + virtual bool ImeUpdateStatus(bool* enable_ime, gfx::Rect* caret_rect) = 0; protected: virtual ~WebWidget() {} diff --git a/webkit/glue/webwidget_impl.cc b/webkit/glue/webwidget_impl.cc index aff0d1d..721bbd3 100644 --- a/webkit/glue/webwidget_impl.cc +++ b/webkit/glue/webwidget_impl.cc @@ -197,7 +197,6 @@ bool WebWidgetImpl::ImeSetComposition(int string_type, } bool WebWidgetImpl::ImeUpdateStatus(bool* enable_ime, - const void** node, gfx::Rect* caret_rect) { return false; } diff --git a/webkit/glue/webwidget_impl.h b/webkit/glue/webwidget_impl.h index 7a67044..46db004 100644 --- a/webkit/glue/webwidget_impl.h +++ b/webkit/glue/webwidget_impl.h @@ -48,7 +48,6 @@ class WebWidgetImpl : public WebWidget, int target_end, const std::wstring& ime_string); virtual bool ImeUpdateStatus(bool* enable_ime, - const void** node, gfx::Rect* caret_rect); // WebWidgetImpl |