summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-13 01:44:07 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-13 01:44:07 +0000
commitb15226c12d04b2fb6ceee6f5ec2a5b2dd4aaff3b (patch)
tree23122bd571d1271a6d712c6eb86cd861f92960ec
parent6e91f4df9e585dfb678cd4bfaeca0c348479b3e6 (diff)
downloadchromium_src-b15226c12d04b2fb6ceee6f5ec2a5b2dd4aaff3b.zip
chromium_src-b15226c12d04b2fb6ceee6f5ec2a5b2dd4aaff3b.tar.gz
chromium_src-b15226c12d04b2fb6ceee6f5ec2a5b2dd4aaff3b.tar.bz2
Fewer NOTIMPLEMENTED()s, more comments.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9724 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/renderer_host/render_widget_host_view_gtk.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/renderer_host/render_widget_host_view_gtk.cc b/chrome/browser/renderer_host/render_widget_host_view_gtk.cc
index 1661777..204b54f 100644
--- a/chrome/browser/renderer_host/render_widget_host_view_gtk.cc
+++ b/chrome/browser/renderer_host/render_widget_host_view_gtk.cc
@@ -196,11 +196,15 @@ void RenderWidgetHostViewGtk::UpdateCursor(const WebCursor& cursor) {
}
void RenderWidgetHostViewGtk::UpdateCursorIfOverSelf() {
+ // Windows uses this to show the resizer arrow if the mouse is over the
+ // bottom-right corner.
NOTIMPLEMENTED();
}
void RenderWidgetHostViewGtk::SetIsLoading(bool is_loading) {
- NOTIMPLEMENTED();
+ // Windows tracks loading whether it's loading to switch the cursor
+ // out for the arrow+hourglass one. We don't have such a cursor, so we just
+ // ignore this.
}
void RenderWidgetHostViewGtk::IMEUpdateStatus(int control,