diff options
Diffstat (limited to 'chrome/browser/crash_recovery_uitest.cc')
-rw-r--r-- | chrome/browser/crash_recovery_uitest.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/crash_recovery_uitest.cc b/chrome/browser/crash_recovery_uitest.cc index 0355ec0..d094124 100644 --- a/chrome/browser/crash_recovery_uitest.cc +++ b/chrome/browser/crash_recovery_uitest.cc @@ -3,7 +3,6 @@ // found in the LICENSE file. #include "base/file_util.h" -#include "chrome/common/url_constants.h" #include "chrome/test/automation/browser_proxy.h" #include "chrome/test/automation/tab_proxy.h" #include "chrome/test/ui/ui_test.h" @@ -31,7 +30,7 @@ TEST_F(CrashRecoveryUITest, Reload) { // Cause the renderer to crash. expected_crashes_ = 1; - tab->NavigateToURLAsync(GURL(chrome::kAboutCrashURL)); + tab->NavigateToURLAsync(GURL("about:crash")); Sleep(1000); // Wait for the browser to notice the renderer crash. @@ -64,7 +63,7 @@ TEST_F(CrashRecoveryUITest, LoadInNewTab) { // Cause the renderer to crash. expected_crashes_ = 1; - tab->NavigateToURLAsync(GURL(chrome::kAboutCrashURL)); + tab->NavigateToURLAsync(GURL("about:crash")); Sleep(1000); // Wait for the browser to notice the renderer crash. |