summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/metrics/StubMetricsInitializer.java
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-02-22 17:54:05 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-02-22 17:54:05 +0000
commitb3772ecffe9901d9a55c3f3284cc652057b43f8b (patch)
tree7146a3f81ae20729260191d294e4baca01e8e3ce /java/com/android/dialer/metrics/StubMetricsInitializer.java
parentc54ce2658988ca36ca3dfab00daefca4dcfed3b2 (diff)
parenta9776efc28f13671fe01c7a2ca5513d462e00b3c (diff)
Merge changes Idbaca1df,Ie7824ce2,Id24b2318,Ib40632fe,I292f23ea, ...
* changes: Do no preload dialpad fragment when opening search through search bar. Add logging to NUI. Implemented hangouts connection into GoogleMainActivity. Created a "Metrics" interface. Fix the icon & the label for blocked spam numbers in the new call log. Move RttChatBot to simulator. Update RTT call with real name/number and timer. Include both PHOTO_URI and PHOTO_THUMBNAIL_URI in Cp2Info. Add simulator RTT call.
Diffstat (limited to 'java/com/android/dialer/metrics/StubMetricsInitializer.java')
-rw-r--r--java/com/android/dialer/metrics/StubMetricsInitializer.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/java/com/android/dialer/metrics/StubMetricsInitializer.java b/java/com/android/dialer/metrics/StubMetricsInitializer.java
new file mode 100644
index 000000000..cea408737
--- /dev/null
+++ b/java/com/android/dialer/metrics/StubMetricsInitializer.java
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2018 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.dialer.metrics;
+
+import android.app.Application;
+import javax.inject.Inject;
+
+/** Stub for {@link Metrics.Initializer}. */
+public class StubMetricsInitializer implements Metrics.Initializer {
+
+ @Inject
+ StubMetricsInitializer() {}
+
+ @Override
+ public void initialize(Application application) {}
+}