106e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck/*
206e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck * Copyright (C) 2013 The Android Open Source Project
306e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck *
406e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck * Licensed under the Apache License, Version 2.0 (the "License");
506e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck * you may not use this file except in compliance with the License.
606e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck * You may obtain a copy of the License at
706e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck *
806e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck *      http://www.apache.org/licenses/LICENSE-2.0
906e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck *
1006e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck * Unless required by applicable law or agreed to in writing, software
1106e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck * distributed under the License is distributed on an "AS IS" BASIS,
1206e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1306e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck * See the License for the specific language governing permissions and
1406e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck * limitations under the License.
1506e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck */
1606e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck
1706e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reckpackage com.android.gallery3d.util;
1806e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck
1906e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reckimport android.content.Context;
2006e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reckimport android.content.Intent;
2106e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck
2206e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reckpublic class HelpUtils {
2306e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck
2406e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck    public static Intent getHelpIntent(Context context) {
2506e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck		return null;
2606e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck	}
2706e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck
2806e34ad198138a9b9b5252af9dd54f2915d0551fJohn Reck}
29