From 8e25c2ed36ce5aa2fc2f9c104371cb256be08b13 Mon Sep 17 00:00:00 2001
From: Nataniel Borges
Date: Mon, 9 Jan 2023 12:16:25 +0000
Subject: [PATCH] Revert "Temporarily point winscope_proxy.py download link to
Code Search"
This reverts commit 30a6979344c80284f93298c729e32a2ffa6879bc.
Reason for revert: https://android-review.git.corp.google.com/q/topic:%22winscope-1.0%22 is updating the proxy files in aosp, this temporary fix is no longer necessary
Change-Id: I3e4d8370e0a947c8491b470cefbd04ddc6f3ef0b
---
.../src/app/components/adb_proxy_component.ts | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/tools/winscope/src/app/components/adb_proxy_component.ts b/tools/winscope/src/app/components/adb_proxy_component.ts
index 3770959b8..3f0c0a366 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 Code Search.
+ Or get it from the AOSP repository.
-
-
- Download from Code Search
+
+ Download from AOSP
Retry
@@ -136,7 +136,7 @@ export class AdbProxyComponent {
proxyKeyItem = '';
readonly proxyVersion = this.proxy.VERSION;
readonly downloadProxyUrl: string =
- 'https://source.corp.google.com/android/development/tools/winscope/src/adb/winscope_proxy.py';
+ 'https://android.googlesource.com/platform/development/+/master/tools/winscope/adb_proxy/winscope_proxy.py';
restart() {
this.addKey.emit(this.proxyKeyItem);
@@ -144,7 +144,7 @@ export class AdbProxyComponent {
this.proxyChange.emit(this.proxy);
}
- downloadFromCodeSearch() {
+ downloadFromAosp() {
window.open(this.downloadProxyUrl, '_blank')?.focus();
}
}