1 /* 2 * Copyright (C) 2024 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.launcher3.util; 18 19 /** 20 * Proxy class used for StateManager ProtoLog support. 21 */ 22 public class StateManagerProtoLogProxy { 23 logGoToState(Object fromState, Object toState, String trace)24 public static void logGoToState(Object fromState, Object toState, String trace) { } 25 logCreateAtomicAnimation(Object fromState, Object toState, String trace)26 public static void logCreateAtomicAnimation(Object fromState, Object toState, String trace) { } 27 logOnStateTransitionStart(Object state)28 public static void logOnStateTransitionStart(Object state) { } 29 logOnStateTransitionEnd(Object state)30 public static void logOnStateTransitionEnd(Object state) { } 31 logCancelAnimation(boolean animationOngoing, String trace)32 public static void logCancelAnimation(boolean animationOngoing, String trace) { } 33 } 34