blob: 70a7bc72fad6bc2f8a9b7ff39a189e673a381995 [file]
package androidx.webgpu
import android.content.Context
/**
* Provides a [Storage] implementation that uses [G3TestStorage]. This is used for tests that run in
* a google3 environment.
*/
object StorageProvider {
fun get(context: Context): Storage {
return G3TestStorage(context)
}
}