blob: fb8671b2d0173e07ddf7de9fa1b279b2b9787106 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.webapk.shell_apk.test.dex_optimizer;
/**
* Interface for service which extracts and optimizes a dex file from an APK.
*/
interface IDexOptimizerService {
boolean deleteDexDirectory();
String extractAndOptimizeDex();
}