user build support for art (2 of 3)
Change-Id: I4696fee58e43db48540e2442c4235fc4bb02d9e3
diff --git a/src/dex_file.h b/src/dex_file.h
index 5d63408..1f87bca 100644
--- a/src/dex_file.h
+++ b/src/dex_file.h
@@ -322,7 +322,7 @@
// Opens .dex file, guessing the container format based on file extension
static const DexFile* Open(const std::string& filename,
- const std::string& strip_location_prefix);
+ const std::string& location);
// Opens .dex file, backed by existing memory
static const DexFile* Open(const uint8_t* base, size_t size,
@@ -773,12 +773,12 @@
// Opens a .dex file
static const DexFile* OpenFile(const std::string& filename,
- const std::string& strip_location_prefix,
+ const std::string& location,
bool verify);
// Opens a dex file from within a .jar, .zip, or .apk file
static const DexFile* OpenZip(const std::string& filename,
- const std::string& strip_location_prefix);
+ const std::string& location);
// Opens a .dex file at the given address backed by a MemMap
static const DexFile* OpenMemory(const std::string& location,