summaryrefslogtreecommitdiffstats
path: root/wear_device.cpp
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-08-23 09:28:18 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-08-23 09:28:18 +0200
commitf425b88b1612db5059232abc33bdaae54d8b7937 (patch)
tree422cef83fa228cfb2a2464c6a7f49e6b5d856506 /wear_device.cpp
parentrelease-request-edd71ba9-6f93-47be-957d-774c9d43a2dc-for-git_oc-mr1-release-4281935 snap-temp-L68100000094184972 (diff)
parentMerge changes from topic "bug-64307776" into oc-mr1-dev (diff)
downloadandroid_bootable_recovery-f425b88b1612db5059232abc33bdaae54d8b7937.tar
android_bootable_recovery-f425b88b1612db5059232abc33bdaae54d8b7937.tar.gz
android_bootable_recovery-f425b88b1612db5059232abc33bdaae54d8b7937.tar.bz2
android_bootable_recovery-f425b88b1612db5059232abc33bdaae54d8b7937.tar.lz
android_bootable_recovery-f425b88b1612db5059232abc33bdaae54d8b7937.tar.xz
android_bootable_recovery-f425b88b1612db5059232abc33bdaae54d8b7937.tar.zst
android_bootable_recovery-f425b88b1612db5059232abc33bdaae54d8b7937.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);
+}
+