Skip to content

Commit

Permalink
Update generated headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Dexterp37 committed Sep 3, 2021
1 parent f7634f7 commit ee2bf3f
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
19 changes: 19 additions & 0 deletions glean-core/ffi/glean.h
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,25 @@ uint8_t glean_timing_distribution_test_has_value(uint64_t metric_id, FfiStr stor
char *glean_timing_distribution_test_get_value_as_json_string(uint64_t metric_id,
FfiStr storage_name);

void glean_destroy_url_metric(uint64_t v);

uint64_t glean_new_url_metric(FfiStr category,
FfiStr name,
RawStringArray send_in_pings,
int32_t send_in_pings_len,
Lifetime lifetime,
uint8_t disabled);

int32_t glean_url_test_get_num_recorded_errors(uint64_t metric_id,
int32_t error_type,
FfiStr storage_name);

void glean_url_set(uint64_t metric_id, FfiStr value);

uint8_t glean_url_test_has_value(uint64_t metric_id, FfiStr storage_name);

char *glean_url_test_get_value(uint64_t metric_id, FfiStr storage_name);

void glean_destroy_uuid_metric(uint64_t v);

uint64_t glean_new_uuid_metric(FfiStr category,
Expand Down
19 changes: 19 additions & 0 deletions glean-core/ios/Glean/GleanFfi.h
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,25 @@ uint8_t glean_timing_distribution_test_has_value(uint64_t metric_id, FfiStr stor
char *glean_timing_distribution_test_get_value_as_json_string(uint64_t metric_id,
FfiStr storage_name);

void glean_destroy_url_metric(uint64_t v);

uint64_t glean_new_url_metric(FfiStr category,
FfiStr name,
RawStringArray send_in_pings,
int32_t send_in_pings_len,
Lifetime lifetime,
uint8_t disabled);

int32_t glean_url_test_get_num_recorded_errors(uint64_t metric_id,
int32_t error_type,
FfiStr storage_name);

void glean_url_set(uint64_t metric_id, FfiStr value);

uint8_t glean_url_test_has_value(uint64_t metric_id, FfiStr storage_name);

char *glean_url_test_get_value(uint64_t metric_id, FfiStr storage_name);

void glean_destroy_uuid_metric(uint64_t v);

uint64_t glean_new_uuid_metric(FfiStr category,
Expand Down

0 comments on commit ee2bf3f

Please sign in to comment.