summaryrefslogtreecommitdiffstats
path: root/wear_device.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-08-22 20:40:35 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-08-22 20:40:35 +0200
commit0d0b6a0d2ad2cfffcdb1084de733c22c5b8f97a9 (patch)
treef0fe99344f303243141b7cea9428421b2477b63e /wear_device.cpp
parentMerge "Move Image/ImageChunk/PatchChunk declaration into header files" am: b4bc57ed39 am: b127fddf09 (diff)
parentMerge changes I5d7a6baa,Id0fb2d4e am: 89ad02206a (diff)
downloadandroid_bootable_recovery-0d0b6a0d2ad2cfffcdb1084de733c22c5b8f97a9.tar
android_bootable_recovery-0d0b6a0d2ad2cfffcdb1084de733c22c5b8f97a9.tar.gz
android_bootable_recovery-0d0b6a0d2ad2cfffcdb1084de733c22c5b8f97a9.tar.bz2
android_bootable_recovery-0d0b6a0d2ad2cfffcdb1084de733c22c5b8f97a9.tar.lz
android_bootable_recovery-0d0b6a0d2ad2cfffcdb1084de733c22c5b8f97a9.tar.xz
android_bootable_recovery-0d0b6a0d2ad2cfffcdb1084de733c22c5b8f97a9.tar.zst
android_bootable_recovery-0d0b6a0d2ad2cfffcdb1084de733c22c5b8f97a9.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);
+}
+