Skip to content

Commit 5d24194

Browse files
Sky MaliceChromium LUCI CQ
authored andcommitted
Fix LoadedTabState JNI qualified name.
This corrects an error from https://crrev.com/c/7023533 where the outer class's name was not used in the JNI qualification. Bug: 448151052 Change-Id: I1f6642af3db82172932059b30eee11f553fb541c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7063077 Auto-Submit: Sky Malice <[email protected]> Commit-Queue: Fiaz Muhammad <[email protected]> Reviewed-by: Fiaz Muhammad <[email protected]> Commit-Queue: Sky Malice <[email protected]> Cr-Commit-Position: refs/heads/main@{#1532390}
1 parent c419d81 commit 5d24194

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

chrome/browser/android/tab_state_storage_service_android.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ void RunJavaCallbackLoadAllTabs(
9191
}
9292

9393
base::android::ScopedJavaLocalRef<jclass> type = base::android::GetClass(
94-
env, "org/chromium/chrome/browser/tab/LoadedTabState");
94+
env,
95+
"org/chromium/chrome/browser/tab/TabStateStorageService$LoadedTabState");
9596
base::android::ScopedJavaLocalRef<jobjectArray> j_loaded_tab_state_array =
9697
base::android::ToTypedJavaArrayOfObjects(env, j_loaded_tab_state_vector,
9798
type.obj());

0 commit comments

Comments
 (0)