summaryrefslogtreecommitdiff
path: root/phone/com/android/internal/policy/impl/KeyguardScreenCallback.java
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:48 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:48 -0800
commit461429674b80b8c0452df6f69376c6394014e6a8 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /phone/com/android/internal/policy/impl/KeyguardScreenCallback.java
parent1f45c1b8dd43486cb3e77d65490786aaf65acf3a (diff)
downloadbase-461429674b80b8c0452df6f69376c6394014e6a8.tar.gz
auto import from //depot/cupcake/@135843
Diffstat (limited to 'phone/com/android/internal/policy/impl/KeyguardScreenCallback.java')
-rw-r--r--phone/com/android/internal/policy/impl/KeyguardScreenCallback.java66
1 files changed, 0 insertions, 66 deletions
diff --git a/phone/com/android/internal/policy/impl/KeyguardScreenCallback.java b/phone/com/android/internal/policy/impl/KeyguardScreenCallback.java
deleted file mode 100644
index b46b37d..0000000
--- a/phone/com/android/internal/policy/impl/KeyguardScreenCallback.java
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2008 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.internal.policy.impl;
-
-/**
- * Within a keyguard, there may be several screens that need a callback
- * to the host keyguard view.
- */
-public interface KeyguardScreenCallback extends KeyguardViewCallback {
-
- /**
- * Transition to the lock screen.
- */
- void goToLockScreen();
-
- /**
- * Transitino to th unlock screen.
- */
- void goToUnlockScreen();
-
- /**
- * @return Whether the keyguard requires some sort of PIN.
- */
- boolean isSecure();
-
- /**
- * @return Whether we are in a mode where we only want to verify the
- * user can get past the keyguard.
- */
- boolean isVerifyUnlockOnly();
-
- /**
- * Stay on me, but recreate me (so I can use a different layout).
- */
- void recreateMe();
-
- /**
- * Take action to send an emergency call.
- */
- void takeEmergencyCallAction();
-
- /**
- * Report that the user had a failed attempt unlocking via the pattern.
- */
- void reportFailedPatternAttempt();
-
- /**
- * Report whether we there's another way to unlock the device.
- * @return true
- */
- boolean doesFallbackUnlockScreenExist();
-}