pw_tokenizer: Remove unused compatibility aliases

Change-Id: If8eac6949fd5afc8a9ea43f5105292b43aa1c66b
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/17401
Reviewed-by: Keir Mierle <keir@google.com>
Commit-Queue: Wyatt Hepler <hepler@google.com>
diff --git a/pw_tokenizer/public/pw_tokenizer/tokenize_to_global_handler.h b/pw_tokenizer/public/pw_tokenizer/tokenize_to_global_handler.h
index e973326..c315f91 100644
--- a/pw_tokenizer/public/pw_tokenizer/tokenize_to_global_handler.h
+++ b/pw_tokenizer/public/pw_tokenizer/tokenize_to_global_handler.h
@@ -63,10 +63,6 @@
 void pw_tokenizer_HandleEncodedMessage(const uint8_t encoded_message[],
                                        size_t size_bytes);
 
-// TODO(hepler): Remove this alias when all projects have migrated to the new
-//     function name.
-#define pw_TokenizerHandleEncodedMessage pw_tokenizer_HandleEncodedMessage
-
 // This function encodes the tokenized strings. Do not call it directly;
 // instead, use the PW_TOKENIZE_TO_GLOBAL_HANDLER macro.
 void _pw_tokenizer_ToGlobalHandler(pw_tokenizer_Token token,
diff --git a/pw_tokenizer/public/pw_tokenizer/tokenize_to_global_handler_with_payload.h b/pw_tokenizer/public/pw_tokenizer/tokenize_to_global_handler_with_payload.h
index 0b1fe51..55914f7 100644
--- a/pw_tokenizer/public/pw_tokenizer/tokenize_to_global_handler_with_payload.h
+++ b/pw_tokenizer/public/pw_tokenizer/tokenize_to_global_handler_with_payload.h
@@ -60,10 +60,6 @@
 
 typedef uintptr_t pw_tokenizer_Payload;
 
-// TODO(hepler): Remove this alias when all projects have migrated to the new
-//     typedef name.
-typedef pw_tokenizer_Payload pw_TokenizerPayload;
-
 // This function must be defined pw_tokenizer:global_handler_with_payload
 // backend. This function is called with the encoded message by
 // pw_tokenizer_ToGlobalHandler and a caller-provided payload argument.
@@ -72,11 +68,6 @@
     const uint8_t encoded_message[],
     size_t size_bytes);
 
-// TODO(hepler): Remove this alias when all projects have migrated to the new
-//     function name.
-#define pw_TokenizerHandleEncodedMessageWithPayload \
-  pw_tokenizer_HandleEncodedMessageWithPayload
-
 // This function encodes the tokenized strings. Do not call it directly;
 // instead, use the PW_TOKENIZE_TO_GLOBAL_HANDLER_WITH_PAYLOAD macro.
 void _pw_tokenizer_ToGlobalHandlerWithPayload(pw_tokenizer_Payload payload,