1720ff62d92f678a86c650ed580c6b27523bb82a9John Reck/*
2720ff62d92f678a86c650ed580c6b27523bb82a9John Reck * Copyright (C) 2013 The Android Open Source Project
3720ff62d92f678a86c650ed580c6b27523bb82a9John Reck *
4720ff62d92f678a86c650ed580c6b27523bb82a9John Reck * Licensed under the Apache License, Version 2.0 (the "License");
5720ff62d92f678a86c650ed580c6b27523bb82a9John Reck * you may not use this file except in compliance with the License.
6720ff62d92f678a86c650ed580c6b27523bb82a9John Reck * You may obtain a copy of the License at
7720ff62d92f678a86c650ed580c6b27523bb82a9John Reck *
8720ff62d92f678a86c650ed580c6b27523bb82a9John Reck *      http://www.apache.org/licenses/LICENSE-2.0
9720ff62d92f678a86c650ed580c6b27523bb82a9John Reck *
10720ff62d92f678a86c650ed580c6b27523bb82a9John Reck * Unless required by applicable law or agreed to in writing, software
11720ff62d92f678a86c650ed580c6b27523bb82a9John Reck * distributed under the License is distributed on an "AS IS" BASIS,
12720ff62d92f678a86c650ed580c6b27523bb82a9John Reck * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13720ff62d92f678a86c650ed580c6b27523bb82a9John Reck * See the License for the specific language governing permissions and
14720ff62d92f678a86c650ed580c6b27523bb82a9John Reck * limitations under the License.
15720ff62d92f678a86c650ed580c6b27523bb82a9John Reck */
16720ff62d92f678a86c650ed580c6b27523bb82a9John Reck
178e963a5a6016d246184ed65906f9d103e92b17e2Sascha Haeberlingpackage com.android.camera.util;
18720ff62d92f678a86c650ed580c6b27523bb82a9John Reck
19720ff62d92f678a86c650ed580c6b27523bb82a9John Reckimport android.content.Context;
20720ff62d92f678a86c650ed580c6b27523bb82a9John Reckimport android.content.Intent;
21720ff62d92f678a86c650ed580c6b27523bb82a9John Reck
22720ff62d92f678a86c650ed580c6b27523bb82a9John Reckpublic class HelpUtils {
23720ff62d92f678a86c650ed580c6b27523bb82a9John Reck
24720ff62d92f678a86c650ed580c6b27523bb82a9John Reck    public static Intent getHelpIntent(Context context) {
25720ff62d92f678a86c650ed580c6b27523bb82a9John Reck		return null;
26720ff62d92f678a86c650ed580c6b27523bb82a9John Reck	}
27720ff62d92f678a86c650ed580c6b27523bb82a9John Reck
28720ff62d92f678a86c650ed580c6b27523bb82a9John Reck}
29