Index: content/browser/renderer_host/render_widget_host_view_aura.cc |
=================================================================== |
--- content/browser/renderer_host/render_widget_host_view_aura.cc (revision 108176) |
+++ content/browser/renderer_host/render_widget_host_view_aura.cc (working copy) |
@@ -213,10 +213,12 @@ |
void RenderWidgetHostViewAura::TextInputStateChanged( |
ui::TextInputType type, |
bool can_compose_inline) { |
+ // http://crbug.com/102569 |
NOTIMPLEMENTED(); |
} |
void RenderWidgetHostViewAura::ImeCancelComposition() { |
+ // http://crbug.com/102569 |
NOTIMPLEMENTED(); |
} |
@@ -332,22 +334,23 @@ |
void RenderWidgetHostViewAura::SetVisuallyDeemphasized(const SkColor* color, |
bool animate) { |
+ // http://crbug.com/102568 |
NOTIMPLEMENTED(); |
} |
void RenderWidgetHostViewAura::UnhandledWheelEvent( |
const WebKit::WebMouseWheelEvent& event) { |
- NOTIMPLEMENTED(); |
+ // Not needed. Mac-only. |
} |
void RenderWidgetHostViewAura::SetHasHorizontalScrollbar( |
bool has_horizontal_scrollbar) { |
- NOTIMPLEMENTED(); |
+ // Not needed. Mac-only. |
} |
void RenderWidgetHostViewAura::SetScrollOffsetPinning( |
bool is_pinned_to_left, bool is_pinned_to_right) { |
- NOTIMPLEMENTED(); |
+ // Not needed. Mac-only. |
} |
#if defined(OS_WIN) |
@@ -379,11 +382,13 @@ |
#endif |
bool RenderWidgetHostViewAura::LockMouse() { |
+ // http://crbug.com/102563 |
NOTIMPLEMENTED(); |
return false; |
} |
void RenderWidgetHostViewAura::UnlockMouse() { |
+ // http://crbug.com/102563 |
NOTIMPLEMENTED(); |
host_->LostMouseLock(); |
} |
@@ -417,8 +422,8 @@ |
} |
gfx::NativeCursor RenderWidgetHostViewAura::GetCursor(const gfx::Point& point) { |
- // TODO(beng): talk to beng before implementing this. |
- //NOTIMPLEMENTED(); |
+ // http://crbug.com/102562 |
+ // NOTIMPLEMENTED(); |
return gfx::kNullCursor; |
} |
@@ -509,6 +514,7 @@ |
// RenderWidgetHostViewAura, private: |
void RenderWidgetHostViewAura::UpdateCursorIfOverSelf() { |
- //NOTIMPLEMENTED(); |
+ // http://crbug.com/102562 |
+ // NOTIMPLEMENTED(); |
// TODO(beng): See RenderWidgetHostViewWin. |
} |