aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
authorAdnan Begovic <adnan@cyngn.com>2015-10-29 17:21:55 -0700
committerAdnan Begovic <adnan@cyngn.com>2015-10-29 17:38:37 -0700
commit06b49a623701cd82c5988734749be2c4bc7c04b5 (patch)
tree9738c6004332ceb1f0f2263db6d3c7eff6836d34 /src/java
parentf24f7a5fd4314bf5dba43c70d47ea49c012e6422 (diff)
downloadvendor_cmsdk-06b49a623701cd82c5988734749be2c4bc7c04b5.zip
vendor_cmsdk-06b49a623701cd82c5988734749be2c4bc7c04b5.tar.gz
vendor_cmsdk-06b49a623701cd82c5988734749be2c4bc7c04b5.tar.bz2
cmsdk: Introduce content classes.
Change-Id: I6306a3b240de2777f1ed8482eb4a76d4d7ea0237
Diffstat (limited to 'src/java')
-rw-r--r--src/java/cyanogenmod/content/Intent.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/java/cyanogenmod/content/Intent.java b/src/java/cyanogenmod/content/Intent.java
new file mode 100644
index 0000000..98efcd6
--- /dev/null
+++ b/src/java/cyanogenmod/content/Intent.java
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2015 The CyanogenMod Project
+ * This code has been modified. Portions copyright (C) 2010, T-Mobile USA, Inc.
+ *
+ * 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 cyanogenmod.content;
+
+/**
+ * CyanogenMod specific intent definition class.
+ */
+public class Intent {
+
+ /**
+ * Activity Action: Start action associated with long press on the recents key.
+ * <p>Input: {@link #EXTRA_LONG_PRESS_RELEASE} is set to true if the long press
+ * is released
+ * <p>Output: Nothing
+ * @hide
+ */
+ public static final String ACTION_RECENTS_LONG_PRESS = "android.intent.action.RECENTS_LONG_PRESS";
+}