| Index: chrome_frame/test/perf/chrome_frame_perftest.cc
|
| ===================================================================
|
| --- chrome_frame/test/perf/chrome_frame_perftest.cc (revision 70917)
|
| +++ chrome_frame/test/perf/chrome_frame_perftest.cc (working copy)
|
| @@ -1095,7 +1095,7 @@
|
| base::win::RegKey flash_key(HKEY_CLASSES_ROOT, kFlashControlKey, KEY_READ);
|
|
|
| std::wstring plugin_path;
|
| - ASSERT_TRUE(flash_key.ReadValue(L"", &plugin_path));
|
| + ASSERT_EQ(ERROR_SUCCESS, flash_key.ReadValue(L"", &plugin_path));
|
| ASSERT_FALSE(plugin_path.empty());
|
|
|
| FilePath flash_path = FilePath::FromWStringHack(plugin_path);
|
| @@ -1116,7 +1116,7 @@
|
| KEY_READ);
|
|
|
| std::wstring plugin_path;
|
| - ASSERT_TRUE(silverlight_key.ReadValue(L"", &plugin_path));
|
| + ASSERT_EQ(ERROR_SUCCESS, silverlight_key.ReadValue(L"", &plugin_path));
|
| ASSERT_FALSE(plugin_path.empty());
|
|
|
| FilePath silverlight_path = FilePath::FromWStringHack(plugin_path);
|
|
|