diff --git a/tools/winscope/src/app/components/adb_proxy_component.ts b/tools/winscope/src/app/components/adb_proxy_component.ts
index 3f0c0a366..3770959b8 100644
--- a/tools/winscope/src/app/components/adb_proxy_component.ts
+++ b/tools/winscope/src/app/components/adb_proxy_component.ts
@@ -32,12 +32,12 @@ import {proxyClient, ProxyClient, ProxyState} from 'trace_collection/proxy_clien
python3 $ANDROID_BUILD_TOP/development/tools/winscope/src/adb/winscope_proxy.py
- Or get it from the AOSP repository.
+ Or get it from Code Search.
-
-
- Download from AOSP
+
+ Download from Code Search
Retry
@@ -136,7 +136,7 @@ export class AdbProxyComponent {
proxyKeyItem = '';
readonly proxyVersion = this.proxy.VERSION;
readonly downloadProxyUrl: string =
- 'https://android.googlesource.com/platform/development/+/master/tools/winscope/adb_proxy/winscope_proxy.py';
+ 'https://source.corp.google.com/android/development/tools/winscope/src/adb/winscope_proxy.py';
restart() {
this.addKey.emit(this.proxyKeyItem);
@@ -144,7 +144,7 @@ export class AdbProxyComponent {
this.proxyChange.emit(this.proxy);
}
- downloadFromAosp() {
+ downloadFromCodeSearch() {
window.open(this.downloadProxyUrl, '_blank')?.focus();
}
}