summaryrefslogtreecommitdiffstats
path: root/wear_device.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-08-03 02:11:04 +0200
committerTao Bao <tbao@google.com>2017-08-13 20:24:33 +0200
commit016120f395795fb1be600c1e85f4dfd324797122 (patch)
tree7937b8d5b1042be36f67e9bec25e17c0f5a7521d /wear_device.cpp
parentupdate_verifier: Support androidboot.veritymode being empty or 'disabled'. (diff)
downloadandroid_bootable_recovery-016120f395795fb1be600c1e85f4dfd324797122.tar
android_bootable_recovery-016120f395795fb1be600c1e85f4dfd324797122.tar.gz
android_bootable_recovery-016120f395795fb1be600c1e85f4dfd324797122.tar.bz2
android_bootable_recovery-016120f395795fb1be600c1e85f4dfd324797122.tar.lz
android_bootable_recovery-016120f395795fb1be600c1e85f4dfd324797122.tar.xz
android_bootable_recovery-016120f395795fb1be600c1e85f4dfd324797122.tar.zst
android_bootable_recovery-016120f395795fb1be600c1e85f4dfd324797122.zip
Diffstat (limited to 'wear_device.cpp')
-rw-r--r--wear_device.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/wear_device.cpp b/wear_device.cpp
new file mode 100644
index 000000000..3268130b0
--- /dev/null
+++ b/wear_device.cpp
@@ -0,0 +1,23 @@
+/*
+ * Copyright (C) 2017 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.
+ */
+
+#include "device.h"
+#include "wear_ui.h"
+
+Device* make_device() {
+ return new Device(new WearRecoveryUI);
+}
+