| Index: ppapi/examples/mouse_cursor/mouse_cursor.cc
|
| diff --git a/ppapi/examples/mouse_cursor/mouse_cursor.cc b/ppapi/examples/mouse_cursor/mouse_cursor.cc
|
| index 0c8b10bc46e0103ba9c7d49de514eade024d8767..8a70b158a9c15a2806cb08288d1e9f928eeae567 100644
|
| --- a/ppapi/examples/mouse_cursor/mouse_cursor.cc
|
| +++ b/ppapi/examples/mouse_cursor/mouse_cursor.cc
|
| @@ -32,11 +32,11 @@ class MyInstance : public pp::Instance {
|
| virtual ~MyInstance() {
|
| }
|
|
|
| - virtual void DidChangeView(const pp::View& view) {
|
| - width_ = view.GetRect().width();
|
| - height_ = view.GetRect().height();
|
| - }
|
| -
|
| + virtual void DidChangeView(const pp::View& view) {
|
| + width_ = view.GetRect().width();
|
| + height_ = view.GetRect().height();
|
| + }
|
| +
|
| virtual bool HandleInputEvent(const pp::InputEvent& event) {
|
| switch (event.GetType()) {
|
| case PP_INPUTEVENT_TYPE_MOUSEDOWN:
|
|
|