Follow constant refactoring in framework.

Bug: 25796509
Change-Id: Ib19aa570fb5fbf26752c5487f1221c9959b1143a
diff --git a/cmds/installd/installd_constants.h b/cmds/installd/installd_constants.h
index 0d21519..4e1d38f 100644
--- a/cmds/installd/installd_constants.h
+++ b/cmds/installd/installd_constants.h
@@ -56,10 +56,13 @@
 constexpr size_t PKG_NAME_MAX = 128u;   /* largest allowed package name */
 constexpr size_t PKG_PATH_MAX = 256u;   /* max size of any path we use */
 
-constexpr int FLAG_DE_STORAGE = 1 << 0;
-constexpr int FLAG_CE_STORAGE = 1 << 1;
-constexpr int FLAG_CLEAR_CACHE_ONLY = 1 << 2;
-constexpr int FLAG_CLEAR_CODE_CACHE_ONLY = 1 << 3;
+// NOTE: keep in sync with StorageManager
+constexpr int FLAG_STORAGE_DE = 1 << 0;
+constexpr int FLAG_STORAGE_CE = 1 << 1;
+
+// NOTE: keep in sync with Installer
+constexpr int FLAG_CLEAR_CACHE_ONLY = 1 << 8;
+constexpr int FLAG_CLEAR_CODE_CACHE_ONLY = 1 << 9;
 
 /* dexopt needed flags matching those in dalvik.system.DexFile */
 constexpr int DEXOPT_DEX2OAT_NEEDED       = 1;