| Index: chrome/browser/idle_android.cc
|
| diff --git a/chrome/browser/idle_android.cc b/chrome/browser/idle_android.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7cf19695f2c12675b27cdb9c5f244deb57d6483f
|
| --- /dev/null
|
| +++ b/chrome/browser/idle_android.cc
|
| @@ -0,0 +1,16 @@
|
| +// Copyright (c) 2012 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 "base/logging.h"
|
| +#include "chrome/browser/idle.h"
|
| +
|
| +// This currently just reports that we're active on Android. Further
|
| +// revisions could check device state to see if we're active but on memory
|
| +// constrained devices such as Android we'll often get completely killed if
|
| +// Chrome isn't active anyway.
|
| +// TODO(yfriedman): Tracking in bug: 114481
|
| +void CalculateIdleState(unsigned int idle_threshold, IdleCallback notify) {
|
| + NOTIMPLEMENTED();
|
| + notify.Run(IDLE_STATE_ACTIVE);
|
| +}
|
|
|