1c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell/*
2c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell * Copyright (C) 2012 The Android Open Source Project
3c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell *
4c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell * Licensed under the Apache License, Version 2.0 (the "License");
5c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell * you may not use this file except in compliance with the License.
6c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell * You may obtain a copy of the License at
7c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell *
8c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell *      http://www.apache.org/licenses/LICENSE-2.0
9c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell *
10c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell * Unless required by applicable law or agreed to in writing, software
11c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell * distributed under the License is distributed on an "AS IS" BASIS,
12c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell * See the License for the specific language governing permissions and
14c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell * limitations under the License.
15c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell */
16c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell
17c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powellpackage android.support.v4.app;
18c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell
19c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powellimport android.app.PendingIntent;
20c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powellimport android.content.Context;
21c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powellimport android.content.Intent;
22c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell
23c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell/**
24c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell * Implementation of TaskStackBuilder that can call Honeycomb APIs.
25c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell */
2684bbe6fe39c63a7e67a3ca937981a463c11ac9edScott Mainclass TaskStackBuilderHoneycomb {
27c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell    public static PendingIntent getActivitiesPendingIntent(Context context, int requestCode,
28c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell            Intent[] intents, int flags) {
29c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell        return PendingIntent.getActivities(context, requestCode, intents, flags);
30c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell    }
31c9cf2eb0a9b6694d0fda3dbc313844955db60820Adam Powell}
32