16419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org/*
26419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org * Copyright (C) 2012 The Android Open Source Project
36419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org *
46419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org * Licensed under the Apache License, Version 2.0 (the "License");
56419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org * you may not use this file except in compliance with the License.
66419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org * You may obtain a copy of the License at
76419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org *
86419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org *      http://www.apache.org/licenses/LICENSE-2.0
96419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org *
106419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org * Unless required by applicable law or agreed to in writing, software
116419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org * distributed under the License is distributed on an "AS IS" BASIS,
126419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13e1ba93ee01aa7df27197189ab4d82a7d5387dc8acommit-bot@chromium.org * See the License for the specific language governing permissions and
14e1ba93ee01aa7df27197189ab4d82a7d5387dc8acommit-bot@chromium.org * limitations under the License.
15e1ba93ee01aa7df27197189ab4d82a7d5387dc8acommit-bot@chromium.org */
16e1ba93ee01aa7df27197189ab4d82a7d5387dc8acommit-bot@chromium.org
17e1ba93ee01aa7df27197189ab4d82a7d5387dc8acommit-bot@chromium.orgpackage android.support.v4.app;
18e1ba93ee01aa7df27197189ab4d82a7d5387dc8acommit-bot@chromium.org
19e1ba93ee01aa7df27197189ab4d82a7d5387dc8acommit-bot@chromium.orgimport android.app.PendingIntent;
20e1ba93ee01aa7df27197189ab4d82a7d5387dc8acommit-bot@chromium.orgimport android.content.Context;
216419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.orgimport android.content.Intent;
226419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org
236419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org/**
246419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org * Implementation of TaskStackBuilder that can call Honeycomb APIs.
256419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org */
266419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.orgclass TaskStackBuilderHoneycomb {
276419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org    public static PendingIntent getActivitiesPendingIntent(Context context, int requestCode,
286419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org            Intent[] intents, int flags) {
296419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org        return PendingIntent.getActivities(context, requestCode, intents, flags);
306419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org    }
316419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org}
326419a5edb8af999623e018b09c3dd88ec371d2e6commit-bot@chromium.org