| Index: ui/base/cursor/cursor_android.cc
|
| diff --git a/ui/base/cursor/cursor_null.cc b/ui/base/cursor/cursor_android.cc
|
| similarity index 65%
|
| copy from ui/base/cursor/cursor_null.cc
|
| copy to ui/base/cursor/cursor_android.cc
|
| index ffb3def6c7b053e97c49fb66138575bf02c9a1ac..e0666f45cddb587efed7b6db575fb0afd0b60266 100644
|
| --- a/ui/base/cursor/cursor_null.cc
|
| +++ b/ui/base/cursor/cursor_android.cc
|
| @@ -1,15 +1,19 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2014 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| #include "ui/base/cursor/cursor.h"
|
|
|
| +#include "base/logging.h"
|
| +
|
| namespace ui {
|
|
|
| void Cursor::RefCustomCursor() {
|
| + NOTIMPLEMENTED();
|
| }
|
|
|
| void Cursor::UnrefCustomCursor() {
|
| + NOTIMPLEMENTED();
|
| }
|
|
|
| } // namespace ui
|
|
|