140ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos/*
240ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos * Copyright (C) 2016 The Android Open Source Project
340ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos *
440ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos * Licensed under the Apache License, Version 2.0 (the "License");
540ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos * you may not use this file except in compliance with the License.
640ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos * You may obtain a copy of the License at
740ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos *
840ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos *      http://www.apache.org/licenses/LICENSE-2.0
940ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos *
1040ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos * Unless required by applicable law or agreed to in writing, software
1140ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos * distributed under the License is distributed on an "AS IS" BASIS,
1240ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1340ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos * See the License for the specific language governing permissions and
1440ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos * limitations under the License
1540ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos */
1640ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos
1740ea083b59c05beec2eb2c064927086aa55173f3Adrian Roospackage com.android.systemui;
1840ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos
1940ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos/**
2040ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos * Placeholder for any vendor-specific services.
2140ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos */
2240ea083b59c05beec2eb2c064927086aa55173f3Adrian Roospublic class VendorServices extends SystemUI {
2340ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos
2440ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos    @Override
2540ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos    public void start() {
2640ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos        // no-op
2740ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos    }
2840ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos
2940ea083b59c05beec2eb2c064927086aa55173f3Adrian Roos}
30