Index: chrome_frame/test/chrome_frame_test_utils.cc |
=================================================================== |
--- chrome_frame/test/chrome_frame_test_utils.cc (revision 60165) |
+++ chrome_frame/test/chrome_frame_test_utils.cc (working copy) |
@@ -408,6 +408,8 @@ |
return IE_7; |
case '8': |
return IE_8; |
+ case '9': |
+ return IE_9; |
default: |
break; |
} |
@@ -421,7 +423,7 @@ |
// have their profiles moved into "Temporary Internet Files". |
// The code below basically retrieves the version of IE and computes |
// the profile directory accordingly. |
- if (GetInstalledIEVersion() == IE_8) { |
+ if (GetInstalledIEVersion() >= IE_8) { |
profile_path = GetProfilePath(kIEProfileName); |
} else { |
profile_path = GetIETemporaryFilesFolder(); |