Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(370)

Unified Diff: ui/base/idle/idle_android.cc

Issue 1394783005: Aura on Android: Idle monitor stub implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@auraclank_upstream
Patch Set: Forgot a comma in ui_base.gyp. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/base/BUILD.gn ('k') | ui/base/ui_base.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/idle/idle_android.cc
diff --git a/ui/base/cursor/cursor_loader_android.cc b/ui/base/idle/idle_android.cc
similarity index 59%
copy from ui/base/cursor/cursor_loader_android.cc
copy to ui/base/idle/idle_android.cc
index 85dbf3c53c387c54b87e8608a8564ebfd0450d58..43b27c019d36c176cb75d838e08659dd729d1f2d 100644
--- a/ui/base/cursor/cursor_loader_android.cc
+++ b/ui/base/idle/idle_android.cc
@@ -2,15 +2,20 @@
// 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_loader.h"
+#include "ui/base/idle/idle.h"
#include "base/logging.h"
namespace ui {
-CursorLoader* CursorLoader::Create() {
+void CalculateIdleTime(IdleTimeCallback notify) {
NOTIMPLEMENTED();
- return nullptr;
+ notify.Run(0);
+}
+
+bool CheckIdleStateIsLocked() {
+ NOTIMPLEMENTED();
+ return false;
}
} // namespace ui
« no previous file with comments | « ui/base/BUILD.gn ('k') | ui/base/ui_base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698