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() {
386386}
387387
388388// Notify the Analytics SDK about the current state of the app's lifecycle.
389- void NotifyAppLifecycleChange (AppLifecycleState state) {
389+ void NotifyAppLifecycleChange (AppLifecycleState state) {
390390 FIREBASE_ASSERT_RETURN_VOID (internal::IsInitialized ());
391391 GoogleAnalytics_NotifyAppLifecycleChange (
392392 static_cast <GoogleAnalytics_AppLifecycleState>(state));
Original file line number Diff line number Diff line change 1818
1919#include <stddef.h>
2020
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.
2223static char g_stub_memory [256 ] = {0 };
2324
2425// clang-format off
Original file line number Diff line number Diff line change @@ -558,15 +558,11 @@ void SetSessionTimeoutDuration(int64_t milliseconds);
558558// / instance id.
559559void ResetAnalyticsData ();
560560
561-
562561// / @brief The state of an app in its lifecycle.
563562// /
564563// / kUnknown is an invalid sate that is used to capture uninitialized values.
565564// / 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 };
570566
571567// / @brief Notifies the current state of the app's lifecycle.
572568// /
@@ -580,7 +576,7 @@ enum AppLifecycleState {
580576// / before the call returns.
581577// /
582578// / @param[in] state The current state of the app's lifecycle.
583-
579+
584580void NotifyAppLifecycleChange (AppLifecycleState state);
585581
586582// / Get the instance ID from the analytics service.
You can’t perform that action at this time.
0 commit comments