FIRPerformance_Private.h 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. // Copyright 2020 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #import "FirebasePerformance/Sources/FPRClient.h"
  15. #import "FirebasePerformance/Sources/Public/FirebasePerformance/FIRPerformance.h"
  16. /**
  17. * Extension that is added on top of the class FIRPerformances to make the private properties
  18. * visible between the implementation file and the unit tests.
  19. */
  20. @interface FIRPerformance ()
  21. /** Custom attribute managed internally. */
  22. @property(nonatomic) NSMutableDictionary<NSString *, NSString *> *customAttributes;
  23. /** Serial queue to manage mutation of attributes. */
  24. @property(nonatomic, readwrite) dispatch_queue_t customAttributesSerialQueue;
  25. /** Client object used for checking the status of the performance SDK before generating events. */
  26. @property(nonatomic, readwrite) FPRClient *fprClient;
  27. @end