1d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd/*
2d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * Copyright (C) 2015 The Android Open Source Project
3d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd *
4d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * Licensed under the Apache License, Version 2.0 (the "License");
5d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * you may not use this file except in compliance with the License.
6d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * You may obtain a copy of the License at
7d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd *
8d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd *      http://www.apache.org/licenses/LICENSE-2.0
9d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd *
10d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * Unless required by applicable law or agreed to in writing, software
11d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * distributed under the License is distributed on an "AS IS" BASIS,
12d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * See the License for the specific language governing permissions and
14d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * limitations under the License.
15d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd */
16d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd
17d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddpackage com.android.messaging.ui.photoviewer;
18d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd
19d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddimport com.android.ex.photo.PhotoViewActivity;
20d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddimport com.android.ex.photo.PhotoViewController;
21d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd
22d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd/**
23d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * Activity to display the conversation images in full-screen. Most of the customization is in
24d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd * {@link BuglePhotoViewController}.
25d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd */
26d3b009ae55651f1e60950342468e3c37fdeb0796Mike Doddpublic class BuglePhotoViewActivity extends PhotoViewActivity {
27d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd    @Override
28d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd    public PhotoViewController createController() {
29d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd        return new BuglePhotoViewController(this);
30d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd    }
31d3b009ae55651f1e60950342468e3c37fdeb0796Mike Dodd}
32