From d4e79efacd1fc66f66375f3ec4b179e83fc0aa1e Mon Sep 17 00:00:00 2001
From: Andrzej Fiedukowicz <afie@google.com>
Date: Mon, 20 Jan 2025 08:21:30 -0800
Subject: [PATCH] Update bunch of obsolete links in cpp101 codelab.

It seems like some of those links are no longer valid, returning 404. This change updates them to point to new location of same documents.

Change-Id: I47dff7f07a357179d1ad99331d3eb513ba17eb3a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6174729
Reviewed-by: Robert Kaplow <rkaplow@chromium.org>
Commit-Queue: Andrzej Fiedukowicz <afie@google.com>
Reviewed-by: Austin Sullivan <asully@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1408694}
---
 codelabs/cpp101/README.md | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/codelabs/cpp101/README.md b/codelabs/cpp101/README.md
index 5bade0f1fc826..b1fe000b5e9d9 100644
--- a/codelabs/cpp101/README.md
+++ b/codelabs/cpp101/README.md
@@ -13,7 +13,8 @@ As always, consider the following resources as of primary importance:
 -   [Callback<> and Bind()](https://chromium.googlesource.com/chromium/src/+/HEAD/docs/callback.md)
 -   [Threading and Tasks in Chrome](https://chromium.googlesource.com/chromium/src/+/main/docs/threading_and_tasks.md)
 -   [Intro to Mojo & Services](https://chromium.googlesource.com/chromium/src.git/+/main/docs/mojo_and_services.md)
--   [Important Abstractions and Data Structures](https://sites.google.com/a/chromium.org/dev/developers/coding-style/important-abstractions-and-data-structures) (badly needs updating)
+-   [Important Abstractions and Data Structures](https://chromium.org/developers/coding-style/important-abstractions-and-data-structures)
+    (badly needs updating)
 
 This tutorial does not assume you have read any of the above,
 though you should feel free to peruse them when necessary.
@@ -28,7 +29,8 @@ exercises yourself in the `codelabs/cpp101` directory.
 ### Prerequisite: Getting the Code
 
 Before you can do the exercises you need to set up a system to checkout, build,
-and run the code. Instructions can be found [here](https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code/).
+and run the code. Instructions can be found
+[here](https://chromium.org/developers/how-tos/get-the-code/).
 
 ### Exercise 0: "Hello World!"