| Index: chrome/browser/history/history_backend_android.cc
|
| diff --git a/chrome/browser/history/history_backend_android.cc b/chrome/browser/history/history_backend_android.cc
|
| index f2be5ac9543077a292414789ae1fbd92900bfbfb..840e8ee348dbd0b89fbc8b548d3f3b5533423d4c 100644
|
| --- a/chrome/browser/history/history_backend_android.cc
|
| +++ b/chrome/browser/history/history_backend_android.cc
|
| @@ -86,11 +86,9 @@ void HistoryBackend::DeleteHistory(
|
|
|
| // Statement -------------------------------------------------------------------
|
|
|
| -void HistoryBackend::MoveStatement(
|
| - scoped_refptr<MoveStatementRequest> request,
|
| - history::AndroidStatement* statement,
|
| - int current_pos,
|
| - int destination) {
|
| +int HistoryBackend::MoveStatement(history::AndroidStatement* statement,
|
| + int current_pos,
|
| + int destination) {
|
| DCHECK_LE(-1, current_pos);
|
| DCHECK_LE(-1, destination);
|
|
|
| @@ -104,7 +102,7 @@ void HistoryBackend::MoveStatement(
|
| break;
|
| }
|
|
|
| - request->ForwardResult(request->handle(), cur);
|
| + return cur;
|
| }
|
|
|
| void HistoryBackend::CloseStatement(AndroidStatement* statement) {
|
|
|