blob: c98984f2ee80616eb61545a1bf175adf29d496cf [file] [log] [blame]
package com.android.calendar;
import android.content.Context;
/**
* Interface for analytics logging.
*/
public interface AnalyticsLogger {
/**
* Open backend of logger.
*
* @param context need to open backend of logger.
* @return true, if analytics logging is ready to be use.
*/
public boolean initialize(Context context);
/**
* Track what view people are using.
*
* @param name of the view.
*/
public void trackView(String name);
}