blob: 99b0f25c0a4e76525d5c13cd6829c5e84715d199 [file] [log] [blame]
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.server.selectiontoolbar;
import android.service.selectiontoolbar.DefaultSelectionToolbarRenderService;
import com.android.server.infra.ServiceNameResolver;
import java.io.PrintWriter;
final class SelectionToolbarServiceNameResolver implements ServiceNameResolver {
// TODO: move to SysUi or ExtServices
private static final String SELECTION_TOOLBAR_SERVICE_NAME =
"android/" + DefaultSelectionToolbarRenderService.class.getName();
@Override
public String getDefaultServiceName(int userId) {
return SELECTION_TOOLBAR_SERVICE_NAME;
}
@Override
public void dumpShort(PrintWriter pw) {
pw.print("service="); pw.print(SELECTION_TOOLBAR_SERVICE_NAME);
}
@Override
public void dumpShort(PrintWriter pw, int userId) {
pw.print("defaultService="); pw.print(getDefaultServiceName(userId));
}
}