Skip to content

Commit 8eb07a1

Browse files
committed
Create a separate package for Application Handlers.
1 parent e6472e8 commit 8eb07a1

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

firebase-perf/src/main/java/com/google/firebase/perf/application/package-info.java

Whitespace-only changes.

firebase-perf/src/main/java/com/google/firebase/perf/internal/ResourceType.java renamed to firebase-perf/src/main/java/com/google/firebase/perf/metrics/ResourceType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
package com.google.firebase.perf.internal;
15+
package com.google.firebase.perf.metrics;
1616

1717
import androidx.annotation.StringDef;
1818
import java.lang.annotation.Retention;

firebase-perf/src/test/java/com/google/firebase/perf/internal/SessionManagerTest.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2021 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
5-
//
65
// You may obtain a copy of the License at
6+
//
77
// http://www.apache.org/licenses/LICENSE-2.0
88
//
99
// Unless required by applicable law or agreed to in writing, software
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
package com.google.firebase.perf.internal;
15+
package com.google.firebase.perf.application;
1616

1717
import static com.google.common.truth.Truth.assertThat;
1818
import static org.mockito.ArgumentMatchers.anyString;
@@ -26,6 +26,10 @@
2626
import static org.mockito.MockitoAnnotations.initMocks;
2727

2828
import com.google.firebase.perf.FirebasePerformanceTestBase;
29+
import com.google.firebase.perf.internal.GaugeManager;
30+
import com.google.firebase.perf.internal.PerfSession;
31+
import com.google.firebase.perf.internal.SessionAwareObject;
32+
import com.google.firebase.perf.internal.SessionManager;
2933
import com.google.firebase.perf.v1.ApplicationProcessState;
3034
import java.lang.ref.WeakReference;
3135
import org.junit.Before;

0 commit comments

Comments
 (0)