From 27f915deda69206c7707fb8139c73de442cd5c1c Mon Sep 17 00:00:00 2001 From: Artem Shvadskiy Date: Thu, 17 Mar 2016 15:11:55 -0700 Subject: Fix metric reporting for remote folder Change-Id: I07ff54f2bd2c615ffb8625b4016704468bfb006f issue-id: CYNGNOS-2251 --- .../stats/internal/model/RemoteFolderAction.java | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 RemoteFolder/src/com/android/launcher3/stats/internal/model/RemoteFolderAction.java (limited to 'RemoteFolder') diff --git a/RemoteFolder/src/com/android/launcher3/stats/internal/model/RemoteFolderAction.java b/RemoteFolder/src/com/android/launcher3/stats/internal/model/RemoteFolderAction.java new file mode 100644 index 000000000..dc3633213 --- /dev/null +++ b/RemoteFolder/src/com/android/launcher3/stats/internal/model/RemoteFolderAction.java @@ -0,0 +1,30 @@ +/* + * Copyright (c) 2016. The CyanogenMod 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.launcher3.stats.internal.model; + +import android.os.Bundle; + +import java.util.ArrayList; +import java.util.List; + +public class RemoteFolderAction implements ITrackingAction { + @Override + public List createTrackingBundles(String trackingId, TrackingEvent.Category category, + List eventList) { + return new ArrayList(); + } +} -- cgit v1.2.3