| OLD | NEW |
| 1 { | 1 { |
| 2 "states": [ | 2 "states": [ |
| 3 ["no_pv", ["chrome_user_no_pv.prop", |
| 4 "chrome_system_no_pv.prop"]], |
| 3 ["clean", ["chrome_user_not_installed.prop", | 5 ["clean", ["chrome_user_not_installed.prop", |
| 4 "chrome_system_not_installed.prop", | 6 "chrome_system_not_installed.prop", |
| 5 "chrome_user_not_inuse.prop", | 7 "chrome_user_not_inuse.prop", |
| 6 "chrome_system_not_inuse.prop"]], | 8 "chrome_system_not_inuse.prop"]], |
| 7 ["chrome_user_installed_not_inuse", ["chrome_user_installed.prop", | 9 ["chrome_user_installed_not_inuse", ["chrome_user_installed.prop", |
| 8 "chrome_system_not_installed.prop", | 10 "chrome_system_not_installed.prop", |
| 9 "chrome_user_not_inuse.prop", | 11 "chrome_user_not_inuse.prop", |
| 10 "chrome_system_not_inuse.prop"]], | 12 "chrome_system_not_inuse.prop"]], |
| 11 ["chrome_system_installed_not_inuse", ["chrome_user_not_installed.prop", | 13 ["chrome_system_installed_not_inuse", ["chrome_user_not_installed.prop", |
| 12 "chrome_system_installed.prop", | 14 "chrome_system_installed.prop", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 36 "python quit_chrome.py \"$PROGRAM_FILES\\$CHROME_DIR\\Application\\chrome.e
xe\""], | 38 "python quit_chrome.py \"$PROGRAM_FILES\\$CHROME_DIR\\Application\\chrome.e
xe\""], |
| 37 ["uninstall_chrome_user", | 39 ["uninstall_chrome_user", |
| 38 "python uninstall_chrome.py --chrome-long-name=\"$CHROME_LONG_NAME\""], | 40 "python uninstall_chrome.py --chrome-long-name=\"$CHROME_LONG_NAME\""], |
| 39 ["uninstall_chrome_system", | 41 ["uninstall_chrome_system", |
| 40 "python uninstall_chrome.py --chrome-long-name=\"$CHROME_LONG_NAME\" --syst
em-level"] | 42 "python uninstall_chrome.py --chrome-long-name=\"$CHROME_LONG_NAME\" --syst
em-level"] |
| 41 ], | 43 ], |
| 42 "tests": [ | 44 "tests": [ |
| 43 { | 45 { |
| 44 "name": "ChromeUserLevel", | 46 "name": "ChromeUserLevel", |
| 45 "traversal": [ | 47 "traversal": [ |
| 46 "clean", | 48 "no_pv", |
| 47 "install_chrome_user", "chrome_user_installed_not_inuse", | 49 "install_chrome_user", "chrome_user_installed_not_inuse", |
| 48 "launch_chrome_user", "chrome_user_installed_inuse", | 50 "launch_chrome_user", "chrome_user_installed_inuse", |
| 49 "quit_chrome_user", "chrome_user_installed_not_inuse", | 51 "quit_chrome_user", "chrome_user_installed_not_inuse", |
| 50 "uninstall_chrome_user", "clean" | 52 "uninstall_chrome_user", "clean" |
| 51 ] | 53 ] |
| 52 }, | 54 }, |
| 53 { | 55 { |
| 54 "name": "ChromeSystemLevel", | 56 "name": "ChromeSystemLevel", |
| 55 "traversal": [ | 57 "traversal": [ |
| 56 "clean", | 58 "no_pv", |
| 57 "install_chrome_system", "chrome_system_installed_not_inuse", | 59 "install_chrome_system", "chrome_system_installed_not_inuse", |
| 58 "launch_chrome_system", "chrome_system_installed_inuse", | 60 "launch_chrome_system", "chrome_system_installed_inuse", |
| 59 "quit_chrome_system", "chrome_system_installed_not_inuse", | 61 "quit_chrome_system", "chrome_system_installed_not_inuse", |
| 60 "uninstall_chrome_system", "clean" | 62 "uninstall_chrome_system", "clean" |
| 61 ] | 63 ] |
| 62 } | 64 } |
| 63 ] | 65 ] |
| 64 } | 66 } |
| OLD | NEW |