File tree Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ void ResetAnalyticsData() {
386
386
}
387
387
388
388
// Notify the Analytics SDK about the current state of the app's lifecycle.
389
- void NotifyAppLifecycleChange (AppLifecycleState state) {
389
+ void NotifyAppLifecycleChange (AppLifecycleState state) {
390
390
FIREBASE_ASSERT_RETURN_VOID (internal::IsInitialized ());
391
391
GoogleAnalytics_NotifyAppLifecycleChange (
392
392
static_cast <GoogleAnalytics_AppLifecycleState>(state));
Original file line number Diff line number Diff line change 18
18
19
19
#include <stddef.h>
20
20
21
- // A nice big chunk of stub memory that can be returned by stubbed Create methods.
21
+ // A nice big chunk of stub memory that can be returned by stubbed Create
22
+ // methods.
22
23
static char g_stub_memory [256 ] = {0 };
23
24
24
25
// clang-format off
Original file line number Diff line number Diff line change @@ -558,15 +558,11 @@ void SetSessionTimeoutDuration(int64_t milliseconds);
558
558
// / instance id.
559
559
void ResetAnalyticsData ();
560
560
561
-
562
561
// / @brief The state of an app in its lifecycle.
563
562
// /
564
563
// / kUnknown is an invalid sate that is used to capture uninitialized values.
565
564
// / kTermination is used to indicate that the app is about to be terminated.
566
- enum AppLifecycleState {
567
- kUnknown = 0 ,
568
- kTermination
569
- };
565
+ enum AppLifecycleState { kUnknown = 0 , kTermination };
570
566
571
567
// / @brief Notifies the current state of the app's lifecycle.
572
568
// /
@@ -580,7 +576,7 @@ enum AppLifecycleState {
580
576
// / before the call returns.
581
577
// /
582
578
// / @param[in] state The current state of the app's lifecycle.
583
-
579
+
584
580
void NotifyAppLifecycleChange (AppLifecycleState state);
585
581
586
582
// / Get the instance ID from the analytics service.
You can’t perform that action at this time.
0 commit comments