blob: 5fa41879370e3c9f99a7cda7a521267d2f583adf [file] [log] [blame]
/*
* Copyright (C) 2009 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.providers.calendar;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class TimeChangeReceiver extends BroadcastReceiver {
static final String TAG = "TimeChangeReceiver";
static final boolean LOGD = false;
CalendarAppWidgetProvider mAppWidgetProvider = CalendarAppWidgetProvider.getInstance();
@Override
public void onReceive(Context context, Intent intent) {
// Pass time-changed notification through to any widgets
if (LOGD) Log.d(TAG, "Received time changed action=" + intent.getAction());
// Consider ignoring this update request if only TIME_CHANGED
boolean considerIgnore = (Intent.ACTION_TIME_CHANGED.equals(intent.getAction()));
mAppWidgetProvider.timeUpdated(context, considerIgnore);
}
}